mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
335 B
Protocol Buffer
16 lines
335 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FleurFairPlayerStatInfo.proto";
|
|
|
|
// Name: MOEDDAGHKAE
|
|
message FleurFairBossSettleInfo {
|
|
uint32 energy = 4;
|
|
uint32 cost_time = 1;
|
|
bool is_success = 9;
|
|
repeated FleurFairPlayerStatInfo stat_info_list = 8;
|
|
uint32 reward_token_num = 7;
|
|
}
|
|
|