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

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

enum class Layer {
  map,
  track,
  object
};

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