From 26fbd8c1edaf94513d9750681edbe449b699efe4 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 22 Feb 2019 17:25:59 -0500 Subject: 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. --- src/enums.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/enums.h') 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 { other }; -enum class Direction { - none, - left, - right, - up, - down +enum class Layer { + track, + object }; #endif /* end of include guard: ENUMS_H_CD0A75E4 */ -- cgit 1.4.1