From c17df7d3e28e0eeb21f7a62d1c66f525b487a5fa Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 2 Nov 2024 18:46:18 +0100 Subject: implement dungeon generation --- backend/Location.h | 1 + 1 file changed, 1 insertion(+) (limited to 'backend/Location.h') diff --git a/backend/Location.h b/backend/Location.h index d29c117..6f701ad 100644 --- a/backend/Location.h +++ b/backend/Location.h @@ -15,6 +15,7 @@ enum Direction { WEST = 3, }; static constexpr const Direction DIRECTIONS[] = { NORTH, EAST, SOUTH, WEST }; +Direction operator - (const Direction &); Direction random_direction(); Direction random_direction(const Location &); -- cgit v1.2.3