mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 04:59:29 +03:00
12 lines
259 B
Protocol Buffer
12 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
message ActivityScheduleInfo {
|
|
uint32 begin_time = 6;
|
|
uint32 activity_id = 7;
|
|
bool is_open = 9;
|
|
uint32 end_time = 13;
|
|
uint32 schedule_id = 14;
|
|
}
|