17 lines
481 B
Protocol Buffer
17 lines
481 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "ItemParam.proto";
|
|
|
|
message TowerLevelEndNotify {
|
|
enum ContinueStateType {
|
|
CONTINUE_STATE_TYPE_CAN_NOT_CONTINUE = 0;
|
|
CONTINUE_STATE_TYPE_CAN_ENTER_NEXT_LEVEL = 1;
|
|
CONTINUE_STATE_TYPE_CAN_ENTER_NEXT_FLOOR = 2;
|
|
}
|
|
|
|
repeated ItemParam reward_item_list = 10;
|
|
repeated uint32 finished_star_cond_list = 3;
|
|
bool is_success = 2;
|
|
uint32 continue_state = 11;
|
|
uint32 next_floor_id = 5;
|
|
} |