summaryrefslogtreecommitdiff
path: root/include/move.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-06 17:16:44 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-06 17:16:44 +0200
commit720edc0849aa69e1c944ac7a32ebcbe2ff1e4bf0 (patch)
tree577b1cc3455c7e5a25506f9194f9e6b7132e3839 /include/move.h
parentc85ebd55fe327125fd4d53d3b62d2b4f145a07a5 (diff)
Fixed indentation to be all spaces
Diffstat (limited to 'include/move.h')
-rw-r--r--include/move.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/move.h b/include/move.h
index e0e9b6b..8f27977 100644
--- a/include/move.h
+++ b/include/move.h
@@ -1,7 +1,7 @@
-#ifndef MOVE_H
-#define MOVE_H
+#pragma once
-enum class Move: int {
+enum class Move: int
+{
NOTHING = 0,
MOVE_LEFT = 1,
MOVE_RIGHT = 2,
@@ -10,5 +10,3 @@ enum class Move: int {
BUILD_MISSILE_CONTROLLER = 5,
BUILD_SHIELD = 6
};
-
-#endif