aboutsummaryrefslogtreecommitdiff
path: root/backend/Location.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-29 21:30:38 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-29 21:30:38 +0100
commita04cb74fee079e3ee43ae5fae32fc2674409822c (patch)
tree403e681a768ee68b54569e93d98e741878cd7975 /backend/Location.h
parent9283e1eb66d6ff96b02f317e28cb6ff060953cdf (diff)
implement movement
Diffstat (limited to 'backend/Location.h')
-rw-r--r--backend/Location.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/Location.h b/backend/Location.h
index 6068a99..f102728 100644
--- a/backend/Location.h
+++ b/backend/Location.h
@@ -11,6 +11,7 @@ enum Direction {
SOUTH = 2,
WEST = 3,
};
+static constexpr const Direction DIRECTIONS[] = { NORTH, EAST, SOUTH, WEST };
class Location {
public: