From 4893a4e91696e36575d9ba4061774572d00cfe83 Mon Sep 17 00:00:00 2001 From: Yazawazi <47273265+Yazawazi@users.noreply.github.com> Date: Thu, 21 Apr 2022 05:33:33 +0800 Subject: [PATCH] SceneTransToPoint --- proto/SceneTransToPointReq.proto | 17 +++++++++++++++++ proto/SceneTransToPointRsp.proto | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 proto/SceneTransToPointReq.proto create mode 100644 proto/SceneTransToPointRsp.proto diff --git a/proto/SceneTransToPointReq.proto b/proto/SceneTransToPointReq.proto new file mode 100644 index 0000000..0eae549 --- /dev/null +++ b/proto/SceneTransToPointReq.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message SceneTransToPointReq { + enum CmdId { + option allow_alias = true; + NONE = 0; + ENET_CHANNEL_ID = 0; + ENET_IS_RELIABLE = 1; + IS_ALLOW_CLIENT = 1; + CMD_ID = 219; + } + + uint32 sceneId = 1; + uint32 pointId = 2; +} diff --git a/proto/SceneTransToPointRsp.proto b/proto/SceneTransToPointRsp.proto new file mode 100644 index 0000000..1182c69 --- /dev/null +++ b/proto/SceneTransToPointRsp.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message SceneTransToPointRsp { + enum CmdId { + option allow_alias = true; + NONE = 0; + ENET_CHANNEL_ID = 0; + ENET_IS_RELIABLE = 1; + CMD_ID = 220; + } + + int32 retcode = 1; + uint32 sceneId = 2; + uint32 pointId = 3; +}