Working on the TileSheet class

This commit is contained in:
Kayne Ruse
2014-02-28 03:40:18 +11:00
parent f7d4912942
commit 91c9cef56d
3 changed files with 94 additions and 17 deletions
+1 -17
View File
@@ -18,7 +18,7 @@
*
* 3. This notice may not be removed or altered from any source
* distribution.
* /
*/
#include "editor_application.hpp"
#include <stdexcept>
@@ -39,20 +39,4 @@ int main(int, char**) {
}
cout << "Clean exit" << endl;
return 0;
}
*/
#include "region_pager.hpp"
#include "map_file_format.hpp"
#include "map_generator.hpp"
#include <iostream>
int main() {
RegionPager<MapGenerator, MapFileFormat> pager(40, 40, 3);
pager.CreateRegion(0, 0);
pager.SaveRegion(0, 0);
pager.LoadRegion(0, 0);
pager.UnloadRegion(0, 0);
std::cout << "Finishing program" << std::endl;
return 0;
}