1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Fix forward declaraction of ObjectRepositoryItem

This commit is contained in:
Michał Janiszewski
2016-10-21 11:21:42 +02:00
parent 8b5024a893
commit 18ff83fd6c
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ enum {
NETWORK_TICK_FLAG_CHECKSUMS = 1 << 0,
};
class ObjectRepositoryItem;
struct ObjectRepositoryItem;
class Network
{

View File

@@ -27,7 +27,7 @@ extern "C"
#include "../object_list.h"
}
class ObjectRepositoryItem;
struct ObjectRepositoryItem;
int scenario_save_network(SDL_RWops* rw, const std::vector<const ObjectRepositoryItem *> &objects);
int scenario_write_packed_objects(SDL_RWops* rw, std::vector<const ObjectRepositoryItem *> &objects);