mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
16 lines
280 B
Protocol Buffer
16 lines
280 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "GCGLevelType.proto";
|
||
|
|
||
|
// CmdId: 7763
|
||
|
// Name: NNAAFMMAGIF
|
||
|
message GCGStartChallengeRsp {
|
||
|
GCGLevelType level_type = 13;
|
||
|
uint32 level_id = 4;
|
||
|
uint32 config_id = 7;
|
||
|
int32 retcode = 8;
|
||
|
}
|
||
|
|