mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
16 lines
318 B
Protocol Buffer
16 lines
318 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AsterLittleStageState.proto";
|
|
|
|
// Name: IKDIHODFNDP
|
|
message AsterLittleDetailInfo {
|
|
uint32 stage_begin_time = 8;
|
|
uint32 stage_id = 7;
|
|
bool is_open = 11;
|
|
AsterLittleStageState stage_state = 2;
|
|
uint32 begin_time = 4;
|
|
}
|
|
|