From 650acd1337270c4d522f004a8e82f951714000f7 Mon Sep 17 00:00:00 2001 From: Akbar Yahya Date: Mon, 27 Feb 2023 07:16:50 +0800 Subject: [PATCH] add proto file for `feat: change game time.` - by hamusuke0323 --- proto/SkipPlayerGameTimeReq.proto | 9 +++++++++ proto/SkipPlayerGameTimeRsp.proto | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 proto/SkipPlayerGameTimeReq.proto create mode 100644 proto/SkipPlayerGameTimeRsp.proto diff --git a/proto/SkipPlayerGameTimeReq.proto b/proto/SkipPlayerGameTimeReq.proto new file mode 100644 index 00000000..9d1aeab7 --- /dev/null +++ b/proto/SkipPlayerGameTimeReq.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message SkipPlayerGameTimeReq { + bool isForceSet = 3; + uint32 clientGameTime = 1; + uint32 gameTime = 15; +} diff --git a/proto/SkipPlayerGameTimeRsp.proto b/proto/SkipPlayerGameTimeRsp.proto new file mode 100644 index 00000000..c1b9c696 --- /dev/null +++ b/proto/SkipPlayerGameTimeRsp.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message SkipPlayerGameTimeRsp { + uint32 clientGameTime = 14; + uint32 gameTime = 15; + int32 retcode = 12; +}