Support of Enter Room Scene

This commit is contained in:
Akka
2022-05-05 22:00:11 +08:00
parent b61672e046
commit 32c70cc83f
5 changed files with 103 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message PersonalSceneJumpReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 260;
}
uint32 point_id = 1;
}