mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
367 B
Protocol Buffer
15 lines
367 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
enum CFPILOJCINI {
|
|
CFPILOJCINI_None = 0;
|
|
CFPILOJCINI_CreateConnect = 1;
|
|
CFPILOJCINI_StartGame = 2;
|
|
CFPILOJCINI_Ping = 3;
|
|
CFPILOJCINI_FinishGame = 4;
|
|
CFPILOJCINI_SnapShot = 5;
|
|
CFPILOJCINI_Action = 6;
|
|
CFPILOJCINI_SnapShotForDebugLog = 7;
|
|
}
|