mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-24 00:11:31 +00:00
14 lines
273 B
Protocol Buffer
14 lines
273 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "TowerTeam.proto";
|
||
|
|
||
|
message TowerCurLevelRecord {
|
||
|
uint32 curFloorId = 1;
|
||
|
uint32 curLevelIndex = 2;
|
||
|
repeated TowerTeam towerTeamList = 3;
|
||
|
repeated uint32 buffIdList = 4;
|
||
|
bool isEmpty = 5;
|
||
|
}
|