diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 17:18:47 -0400 |
commit | c0c5431800d0306d01814e9902566c9b4fc9220b (patch) | |
tree | 50d206c31bb7f535c3f2ca0b8d0f735c5a61f9a5 /proto/human.proto | |
parent | c9da387ede51f207825b63d9f13036a7b661d4b3 (diff) | |
download | lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.tar.gz lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.tar.bz2 lingo2-archipelago-c0c5431800d0306d01814e9902566c9b4fc9220b.zip |
Assign AP IDs to doors and panels proto
Diffstat (limited to 'proto/human.proto')
-rw-r--r-- | proto/human.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/proto/human.proto b/proto/human.proto index d5d03ff..1dcf2ab 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -124,3 +124,16 @@ message HumanRoom { | |||
124 | repeated Letter letters = 5; | 124 | repeated Letter letters = 5; |
125 | repeated HumanPort ports = 6; | 125 | repeated HumanPort ports = 6; |
126 | } | 126 | } |
127 | |||
128 | message IdMappings { | ||
129 | message RoomIds { | ||
130 | map<string, uint64> panels = 1; | ||
131 | } | ||
132 | |||
133 | message MapIds { | ||
134 | map<string, uint64> doors = 1; | ||
135 | map<string, RoomIds> rooms = 2; | ||
136 | } | ||
137 | |||
138 | map<string, MapIds> maps = 1; | ||
139 | } | ||