aboutsummaryrefslogtreecommitdiff
path: root/TileData.h
diff options
context:
space:
mode:
Diffstat (limited to 'TileData.h')
-rw-r--r--TileData.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/TileData.h b/TileData.h
index 406947f..87d9003 100644
--- a/TileData.h
+++ b/TileData.h
@@ -2,7 +2,9 @@
#include <string>
-typedef struct {
- std::string type;
-} TileData;
+struct TileData {
+ unsigned int x = 0;
+ unsigned int y = 0;
+ std::string type = "";
+};