From 4ec5bf36218ad715657bba7649598410feae2794 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 2 May 2023 10:53:24 -0400 Subject: Sorted locations into map areas --- game_data.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game_data.h') diff --git a/game_data.h b/game_data.h index 91b48a5..00d6328 100644 --- a/game_data.h +++ b/game_data.h @@ -19,6 +19,7 @@ enum class LingoColor { }; struct Panel { + int id; int room; std::string name; std::vector colors; @@ -51,7 +52,7 @@ struct Room { struct Location { std::string name; - int location_id; + int location_id = -1; int room; std::vector panels; }; -- cgit 1.4.1