From 2915bd5518150955ed1581110527f4bb4adadfe8 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sun, 26 Jun 2011 01:31:43 +0300 Subject: more reorganizing of map code --- src/mapsector.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/mapsector.h') diff --git a/src/mapsector.h b/src/mapsector.h index c5a41ca19..44f45d8f0 100644 --- a/src/mapsector.h +++ b/src/mapsector.h @@ -30,7 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include class MapBlock; -class NodeContainer; +class Map; /* This is an Y-wise stack of MapBlocks. @@ -43,7 +43,7 @@ class MapSector { public: - MapSector(NodeContainer *parent, v2s16 pos); + MapSector(Map *parent, v2s16 pos); virtual ~MapSector(); virtual u32 getId() const = 0; @@ -73,7 +73,7 @@ protected: // The pile of MapBlocks core::map m_blocks; - NodeContainer *m_parent; + Map *m_parent; // Position on parent (in MapBlock widths) v2s16 m_pos; @@ -92,7 +92,7 @@ protected: class ServerMapSector : public MapSector { public: - ServerMapSector(NodeContainer *parent, v2s16 pos); + ServerMapSector(Map *parent, v2s16 pos); ~ServerMapSector(); u32 getId() const @@ -109,7 +109,7 @@ public: static ServerMapSector* deSerialize( std::istream &is, - NodeContainer *parent, + Map *parent, v2s16 p2d, core::map & sectors ); @@ -121,7 +121,7 @@ private: class ClientMapSector : public MapSector { public: - ClientMapSector(NodeContainer *parent, v2s16 pos); + ClientMapSector(Map *parent, v2s16 pos); ~ClientMapSector(); u32 getId() const -- cgit v1.2.3