mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
342 B
Protocol Buffer
16 lines
342 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "RogueDiaryAvatar.proto";
|
|
|
|
// CmdId: 8256
|
|
// Name: PNGLJFIIBEM
|
|
message StartRogueDiaryPlayRsp {
|
|
repeated uint32 rand_card_list = 15;
|
|
int32 retcode = 3;
|
|
repeated RogueDiaryAvatar trial_avatar_list = 8;
|
|
repeated RogueDiaryAvatar avatar_list = 2;
|
|
}
|
|
|