17 lines
379 B
Protocol Buffer
17 lines
379 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "TowerTeam.proto";
|
|
|
|
// Name: CAHLCAONMAP
|
|
message TowerCurLevelRecord {
|
|
uint32 cur_floor_id = 2; //OOBKAHDLNGD
|
|
repeated TowerTeam tower_team_list = 11;
|
|
bool is_upper_part = 6;
|
|
repeated uint32 buff_id_list = 3;
|
|
uint32 cur_level_index = 15; //ECKEFENMNCC
|
|
bool is_empty = 1;
|
|
}
|
|
|