DoorKeeper/src/main.cpp

10 lines
208 B
C++
Raw Normal View History

2014-08-27 14:03:56 +00:00
#include <iostream>
#include "test/test_tiler.hpp"
2014-08-27 14:03:56 +00:00
int main() {
TestTiler simpleMap(TestTiler::coords(200, 150), "test.map");
std::cout << "Total tiles: " << simpleMap.tiles_count() << "\n";
2014-08-27 14:03:56 +00:00
return 0;
}