mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-24 15:39:25 +03:00
15 lines
375 B
Protocol Buffer
15 lines
375 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
enum CFPILOJCINI {
|
|
CFPILOJCINI_NONE = 0;
|
|
CFPILOJCINI_CREATE_CONNECT = 1;
|
|
CFPILOJCINI_START_GAME = 2;
|
|
CFPILOJCINI_PING = 3;
|
|
CFPILOJCINI_FINISH_GAME = 4;
|
|
CFPILOJCINI_SNAP_SHOT = 5;
|
|
CFPILOJCINI_ACTION = 6;
|
|
CFPILOJCINI_SNAP_SHOT_FOR_DEBUG_LOG = 7;
|
|
}
|