summary refs log tree commit diff stats
path: root/src/tileset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tileset.h')
-rw-r--r--src/tileset.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tileset.h b/src/tileset.h index 610a710..8a565bc 100644 --- a/src/tileset.h +++ b/src/tileset.h
@@ -1,10 +1,12 @@
1#ifndef TILESET_H_B89AE7A1 1#ifndef TILESET_H_B89AE7A1
2#define TILESET_H_B89AE7A1 2#define TILESET_H_B89AE7A1
3 3
4#include "enums.h"
5
4class Tileset { 6class Tileset {
5public: 7public:
6 8
7 bool canPlayerMoveTo(size_t tile) const 9 bool canEntityMoveTo(ColliderType collider, size_t tile) const
8 { 10 {
9 return true; 11 return true;
10 } 12 }