]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/Tile.h
moved map data to maps.l2s
[l2e.git] / src / map / Tile.h
index 06b3b1175b62ae315c5c5c3054e7b4e7eb051bc4..6706b01a42a53741af395591b46cc47df3af2a62 100644 (file)
@@ -37,6 +37,9 @@ public:
        bool BlocksSouth() const { return flags & BLOCK_SOUTH; }
        bool BlocksWest() const { return flags & BLOCK_WEST; }
 
+       static void CreateTypeDescription();
+       static void Construct(void *);
+
 // temporary setters
 public:
        Tile &SetOffset(const geometry::Vector<int> &o) { offset = o; return *this; }
@@ -45,7 +48,7 @@ public:
 private:
        SDL_Surface *battlebg;
        geometry::Vector<int> offset;
-       Uint32 flags;
+       int flags;
 
 };