]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/Map.h
moved map data to maps.l2s
[l2e.git] / src / map / Map.h
index 40cce1c497259e31a719a4bcf3114c2ded2478b7..a985d8491f44928335ba06a618677d095da6079f 100644 (file)
@@ -39,14 +39,8 @@ public:
        void Render(SDL_Surface *dest, const geometry::Vector<int> &offset) const;
        void RenderDebug(SDL_Surface *dest, const geometry::Vector<int> &offset) const;
 
-// temporary setters
-public:
-       void SetTileset(const graphics::Sprite *t) { tileset = t; }
-       void SetBattleBackground(SDL_Surface *bg) { battlebg = bg; }
-       void SetAreas(Area *a, int num) { areas = a; numAreas = num; }
-       void SetTriggers(Trigger *t, int num) { triggers = t; numTriggers = num; }
-       void SetEntities(Entity *e, int num) { entities = e; numEntities = num; }
-       void SetWidth(int w) { width = w; }
+       static void CreateTypeDescription();
+       static void Construct(void *);
 
 private:
        const graphics::Sprite *tileset;