From 90483e4f3d0f7b95b3846bf1d0ff410ebd930011 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 25 May 2015 22:00:39 +0200 Subject: Made output random --- include/move.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/move.h (limited to 'include/move.h') diff --git a/include/move.h b/include/move.h new file mode 100644 index 0000000..e0e9b6b --- /dev/null +++ b/include/move.h @@ -0,0 +1,14 @@ +#ifndef MOVE_H +#define MOVE_H + +enum class Move: int { + NOTHING = 0, + MOVE_LEFT = 1, + MOVE_RIGHT = 2, + SHOOT = 3, + BUILD_ALIEN_FACTORY = 4, + BUILD_MISSILE_CONTROLLER = 5, + BUILD_SHIELD = 6 +}; + +#endif -- cgit v1.2.3