mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 11:26:07 +00:00
af6c27a002
* Fix Daily dungeon didn't display in note(笔记) -- Buggy * 123
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;
|
|
}
|