diff options
Diffstat (limited to 'game/ground.h')
-rw-r--r-- | game/ground.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/game/ground.h b/game/ground.h index ab8f0e8..d1a4f34 100644 --- a/game/ground.h +++ b/game/ground.h @@ -16,13 +16,14 @@ class Resource { class Ground { public: - Ground (int sx, int sy); - ~Ground (); + Ground () {} int *tiles; std::vector<Resource> resources; + void build (int sx, int sy); + int sizex; int sizey; int at (int x, int y); |