summary refs log tree commit diff stats
path: root/proto/human.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/human.proto')
-rw-r--r--proto/human.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/proto/human.proto b/proto/human.proto index c7e2f5d..8d882da 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -183,6 +183,15 @@ message HumanMap {
183 repeated string excluded_nodes = 2; 183 repeated string excluded_nodes = 2;
184} 184}
185 185
186message HumanProgressive {
187 optional string name = 1;
188 repeated DoorIdentifier doors = 2;
189}
190
191message HumanProgressives {
192 repeated HumanProgressive progressives = 1;
193}
194
186message IdMappings { 195message IdMappings {
187 message RoomIds { 196 message RoomIds {
188 map<string, uint64> panels = 1; 197 map<string, uint64> panels = 1;
@@ -198,4 +207,5 @@ message IdMappings {
198 map<string, uint64> special = 2; 207 map<string, uint64> special = 2;
199 map<string, uint64> letters = 3; 208 map<string, uint64> letters = 3;
200 map<string, uint64> endings = 4; 209 map<string, uint64> endings = 4;
210 map<string, uint64> progressives = 5;
201} 211}