blob: 536c4206b6c8e9e06cad64b8e5de0fb81a9b8ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef GAMESTATE_H
#define GAMESTATE_H
#include <collection.hpp>
#include <memory>
#include <special_members.hpp>
class WorldObject;
class GeoData;
class GameState {
public:
GameState();
~GameState();
NO_MOVE(GameState);
NO_COPY(GameState);
Collection<WorldObject> world;
std::shared_ptr<GeoData> geoData;
};
extern GameState * gameState;
#endif
|