duncan
Mom and Dad were wrong!
|
00001 #ifndef SERVER_MAP_H_ 00002 #define SERVER_MAP_H_ 00003 00004 #include <vector> 00005 #include <queue> 00006 #include <utility> 00007 #include "../map/map.h" 00008 00009 namespace server { 00010 00017 class ServerMap : public map::Map { 00018 private: 00019 std::vector<std::pair<size_t,size_t> > spawn_; 00020 public: 00021 ServerMap(const std::string&); 00022 bool load(const std::string&); 00023 00024 const std::vector<std::pair<size_t,size_t> >& spawn(); 00025 }; 00026 00027 } // namespace 00028 00029 #endif