summary refs log tree commit diff stats
path: root/src/tileset.h
blob: 8a565bcd2e86549666670483d352881c75a30cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TILESET_H_B89AE7A1
#define TILESET_H_B89AE7A1

#include "enums.h"

class Tileset {
public:

  bool canEntityMoveTo(ColliderType collider, size_t tile) const
  {
    return true;
  }
};

#endif /* end of include guard: TILESET_H_B89AE7A1 */