GC-Proto/proto/TowerTeamSelectReq.proto

20 lines
339 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "TowerTeam.proto";
message TowerTeamSelectReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 2401;
}
uint32 floor_id = 1;
repeated TowerTeam tower_team_list = 2;
}