diff options
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 | } | ||