about summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index 4b3cf1f..38b8822 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -52,6 +52,11 @@ enum DoorGroupType {
52 SHUFFLE_GROUP = 4; 52 SHUFFLE_GROUP = 4;
53} 53}
54 54
55enum MapType {
56 NORMAL_MAP = 0;
57 ICARUS = 1;
58}
59
55enum AxisDirection { 60enum AxisDirection {
56 AXIS_DIRECTION_UNKNOWN = 0; 61 AXIS_DIRECTION_UNKNOWN = 0;
57 62
@@ -266,6 +271,7 @@ message Map {
266 optional string name = 2; 271 optional string name = 2;
267 optional string display_name = 3; 272 optional string display_name = 3;
268 optional uint64 worldport_entrance = 4; 273 optional uint64 worldport_entrance = 4;
274 optional MapType type = 5;
269} 275}
270 276
271message Progressive { 277message Progressive {