From 428c401f9c1053f7e13ffe641758dfb72791d8dc Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 26 Jun 2015 19:59:28 -0400 Subject: Player now moves --- src/direction.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/direction.h (limited to 'src/direction.h') diff --git a/src/direction.h b/src/direction.h new file mode 100644 index 0000000..32d6b41 --- /dev/null +++ b/src/direction.h @@ -0,0 +1,11 @@ +#ifndef DIRECTION_H_9C49EAFD +#define DIRECTION_H_9C49EAFD + +enum class Direction { + Left, + Right, + Up, + Down +}; + +#endif /* end of include guard: DIRECTION_H_9C49EAFD */ -- cgit 1.4.1