mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
13 lines
348 B
Protocol Buffer
13 lines
348 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
// Version: 5.0
|
||
|
// CmdId: 25107
|
||
|
|
||
|
import "EffigyChallengeV4LevelInfo.proto";
|
||
|
import "EffigyChallengeV4PlayerInfo.proto";
|
||
|
|
||
|
message EffigyChallengeV4PrepareNotify {
|
||
|
EffigyChallengeV4LevelInfo level_info = 6;
|
||
|
repeated EffigyChallengeV4PlayerInfo player_info_list = 7;
|
||
|
}
|