mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-01 05:42:53 +08:00
11 lines
218 B
Protocol Buffer
11 lines
218 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
enum MovingPlatformType {
|
||
|
MOVING_PLATFORM_NONE = 0;
|
||
|
MOVING_PLATFORM_USE_CONFIG = 1;
|
||
|
MOVING_PLATFORM_ABILITY = 2;
|
||
|
MOVING_PLATFORM_ROUTE = 3;
|
||
|
}
|