GC-Proto/proto/AnnounceData.proto

19 lines
425 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
2023-02-28 06:08:38 +03:00
// Name: NDDGEOMCBEE
2022-11-06 15:30:21 +03:00
message AnnounceData {
2023-02-28 06:08:38 +03:00
bool is_center_system_last_5_every_minutes = 8;
2023-02-28 23:24:57 +03:00
uint32 countDownFrequency = 12;
2023-02-28 06:08:38 +03:00
uint32 end_time = 15;
uint32 config_id = 11;
2023-02-28 23:24:57 +03:00
string countDownText = 3;
string dungeonConfirmText = 5;
string centerSystemText = 6;
uint32 centerSystemFrequency = 7;
2023-02-28 06:08:38 +03:00
uint32 begin_time = 13;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00