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

enum class ColliderType {
  player,
  train,
  crate,
  other
};

enum class Layer {
  track,
  object
};

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