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

class Tileset {
public:

  bool canPlayerMoveTo(size_t tile) const
  {
    return (tile % 2 == 1);
  }
};

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