From 77be863f4f15d2481a64e4e8dadb4060a6e4e590 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 11 Feb 2018 12:34:52 -0500 Subject: Implemented map rendering and basic collision Only wall and platform collision currently works, and map edges are not currently implemented. --- src/direction.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/direction.h') diff --git a/src/direction.h b/src/direction.h index 32d6b41..9a4c801 100644 --- a/src/direction.h +++ b/src/direction.h @@ -2,10 +2,10 @@ #define DIRECTION_H_9C49EAFD enum class Direction { - Left, - Right, - Up, - Down + left, + right, + up, + down }; #endif /* end of include guard: DIRECTION_H_9C49EAFD */ -- cgit 1.4.1