GC-Proto/proto/ChannelerSlabActivityDetailInfo.proto

17 lines
473 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 "ChannelerSlabChallengeStage.proto";
2023-04-11 06:14:48 +03:00
import "ChannellerSlabBuffInfo.proto";
import "ChannellerSlabLoopDungeonStageInfo.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// Name: CALILMNFCND
2023-02-18 04:48:44 +03:00
message ChannelerSlabActivityDetailInfo {
2023-04-11 06:14:48 +03:00
ChannellerSlabBuffInfo buff_info = 8;
ChannellerSlabLoopDungeonStageInfo loop_dungeon_stage_info = 12;
repeated ChannelerSlabChallengeStage stage_list = 14;
uint32 play_end_time = 11;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00