diff options
author | Nao Pross <naopross@thearcway.org> | 2018-02-11 22:55:22 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-02-11 22:55:22 +0100 |
commit | e3fd07e606098dd9cdf0b7ed806340d8466b5572 (patch) | |
tree | cbf5cc81afcbbc62784f7c6fc02d4418cf03cee7 /src/main/headers/Tile.hpp | |
parent | Remove redundant scenesOffsetX/Y, replaced with panX (diff) | |
download | Subconscious-old-e3fd07e606098dd9cdf0b7ed806340d8466b5572.tar.gz Subconscious-old-e3fd07e606098dd9cdf0b7ed806340d8466b5572.zip |
Reimplement in C++ with SFML (mostly)
Diffstat (limited to '')
-rw-r--r-- | src/main/headers/Tile.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/headers/Tile.hpp b/src/main/headers/Tile.hpp new file mode 100644 index 0000000..7292fde --- /dev/null +++ b/src/main/headers/Tile.hpp @@ -0,0 +1,17 @@ +#ifndef TILE_HPP +#define TILE_HPP + +struct Tile +{ + enum Type + { + GRASS, WATER + }; + + const Type type; + const int x, y; + + Tile(Type _type, int _x, int _y) : type(_type), x(_x), y(_y) {} +}; + +#endif |