diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/data.proto | 6 | ||||
-rw-r--r-- | proto/human.proto | 1 |
2 files changed, 7 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 | ||
55 | enum MapType { | ||
56 | NORMAL_MAP = 0; | ||
57 | ICARUS = 1; | ||
58 | } | ||
59 | |||
55 | enum AxisDirection { | 60 | enum 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 | ||
271 | message Progressive { | 277 | message Progressive { |
diff --git a/proto/human.proto b/proto/human.proto index ee59bab..41fce45 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -223,6 +223,7 @@ message HumanMap { | |||
223 | optional string display_name = 1; | 223 | optional string display_name = 1; |
224 | repeated string excluded_nodes = 2; | 224 | repeated string excluded_nodes = 2; |
225 | optional PortIdentifier worldport_entrance = 3; | 225 | optional PortIdentifier worldport_entrance = 3; |
226 | optional MapType type = 4; | ||
226 | } | 227 | } |
227 | 228 | ||
228 | message HumanProgressive { | 229 | message HumanProgressive { |