diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-12-16 15:48:24 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-12-16 15:48:24 +0100 |
commit | b13dc31b08cddf14ecfa6b8cf496cf4e7308083c (patch) | |
tree | 8905b2d680c24d1f5c185479f0c94694a58e2122 /src/game/game.hpp | |
parent | a62ac36a7e401b39d760237778623f5a2b13f91f (diff) |
Better tile textures.
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index fce113d..58892ff 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -9,14 +9,16 @@ namespace game { enum { TILE_NONE, TILE_DIRT, - TILE_WALL + TILE_STONE, + TILE_WATER }; enum { CF_BACKGROUND = 1, CF_SOLID = 2, CF_BODY = 4, - CF_BODY_SMALL = 8 + CF_BODY_SMALL = 8, + CF_WATER = 16 }; extern size_t selection_cookie; |