summaryrefslogtreecommitdiff
path: root/src/game-server/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/map.h')
-rw-r--r--src/game-server/map.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/game-server/map.h b/src/game-server/map.h
index fab5baaf..ba46f737 100644
--- a/src/game-server/map.h
+++ b/src/game-server/map.h
@@ -25,9 +25,6 @@
#include <map>
#include <string>
-const unsigned int DEFAULT_TILE_WIDTH = 32;
-const unsigned int DEFAULT_TILE_HEIGHT = 32;
-
/**
* A position along a being's path.
* Used to compute each Path Nodes of the path.
@@ -106,8 +103,8 @@ class Map
/**
* Constructor that takes initial map size as parameters.
*/
- Map(int width = 0, int height = 0,
- int twidth = DEFAULT_TILE_WIDTH, int theight = DEFAULT_TILE_HEIGHT);
+ Map(int width, int height,
+ int twidth, int theight);
/**
* Destructor.