GC-Proto/proto/EnterRogueDiaryDungeonReq.proto

14 lines
279 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "RogueDiaryAvatar.proto";
2023-02-28 04:12:44 +03:00
// Name: OGDCGLMJODF
// CmdId: 8388
2023-02-18 04:48:44 +03:00
message EnterRogueDiaryDungeonReq {
2023-02-28 04:12:44 +03:00
repeated RogueDiaryAvatar chosen_avatar_list = 13;
repeated uint32 chosen_card_list = 14;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00