mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
18 lines
241 B
Protocol Buffer
18 lines
241 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
enum PlatformType {
|
||
|
EDITOR = 0;
|
||
|
IOS = 1;
|
||
|
ANDROID = 2;
|
||
|
PC = 3;
|
||
|
PS4 = 4;
|
||
|
SERVER = 5;
|
||
|
CLOUD_ANDROID = 6;
|
||
|
CLOUD_IOS = 7;
|
||
|
PS5 = 8;
|
||
|
CLOUD_WEB = 9;
|
||
|
CLOUD_TV = 10;
|
||
|
}
|