From 200988215a3f5674488da928d3d5606ed7e5e2ec Mon Sep 17 00:00:00 2001 From: cflip Date: Tue, 25 Jan 2022 17:18:26 -0700 Subject: No need to specify tile ids above 1 --- level.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/level.h b/level.h index ae7ffe3..0ffdac2 100644 --- a/level.h +++ b/level.h @@ -18,11 +18,11 @@ private: enum RailDirection { NorthSouth = 1, - EastWest = 2, - SouthEast = 3, - SouthWest = 4, - NorthWest = 5, - NorthEast = 6, + EastWest, + SouthEast, + SouthWest, + NorthWest, + NorthEast, }; RailDirection ChooseDirection(Level& level, int x, int y); \ No newline at end of file -- cgit v1.2.3