summary refs log tree commit diff stats
path: root/src/enums.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2019-02-22 17:25:59 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2019-02-22 17:25:59 -0500
commit26fbd8c1edaf94513d9750681edbe449b699efe4 (patch)
tree3356e61d3eca5eda067169a2c584616a49d8e5a5 /src/enums.h
parentd9c201cbf2fbfe315137e141d886a9bbfa6794ba (diff)
downloaddispatcher-26fbd8c1edaf94513d9750681edbe449b699efe4.tar.gz
dispatcher-26fbd8c1edaf94513d9750681edbe449b699efe4.tar.bz2
dispatcher-26fbd8c1edaf94513d9750681edbe449b699efe4.zip
Trains move on tracks to the beat
Small implementation changes in various places, biggest thing is now we're using ranges, which is experimental and will be included for real in C++20.
Diffstat (limited to 'src/enums.h')
-rw-r--r--src/enums.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/enums.h b/src/enums.h index 9821da1..e2056f5 100644 --- a/src/enums.h +++ b/src/enums.h
@@ -8,12 +8,9 @@ enum class ColliderType {
8 other 8 other
9}; 9};
10 10
11enum class Direction { 11enum class Layer {
12 none, 12 track,
13 left, 13 object
14 right,
15 up,
16 down
17}; 14};
18 15
19#endif /* end of include guard: ENUMS_H_CD0A75E4 */ 16#endif /* end of include guard: ENUMS_H_CD0A75E4 */