Moved the map systems into their own directory

This commit is contained in:
Kayne Ruse
2013-10-17 23:33:02 +11:00
parent 6fc8570cf4
commit 7e603ffa89
15 changed files with 48 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef MAPLOADER_HPP_
#define MAPLOADER_HPP_
#include "region_pager.hpp"
#include "tile_sheet.hpp"
#include <list>
#include <string>
/* Given the map name and pointers to containers, this is a generic loading system
*/
void loadGameMap(std::string mapPathName, RegionPager* pager, std::list<TileSheet>* sheetList);
void saveGameMap(std::string mapPathName, RegionPager* pager, std::list<TileSheet>* sheetList);
#endif