Tower Dungeons Handoff between level and floor

This commit is contained in:
Akka
2022-05-07 00:11:54 +08:00
parent a79e00896c
commit 6144f47127
14 changed files with 306 additions and 30 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "TowerFloorRecord.proto";
message TowerFloorRecordChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 2418;
}
repeated TowerFloorRecord tower_floor_record_list = 1;
bool is_finished_entrance_floor = 2;
}