mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 10:55:56 +00:00
14 lines
290 B
Protocol Buffer
14 lines
290 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "DailyDungeonEntryInfo.proto";
|
||
|
|
||
|
// CmdId: 925
|
||
|
// EnetChannelId: 0
|
||
|
// EnetIsReliable: true
|
||
|
message GetDailyDungeonEntryInfoRsp {
|
||
|
int32 retcode = 9;
|
||
|
repeated DailyDungeonEntryInfo daily_dungeon_info_list = 4;
|
||
|
}
|