add proto file for `feat: change game time.`

- by hamusuke0323
This commit is contained in:
Akbar Yahya 2023-02-27 07:16:50 +08:00
parent af7b97985f
commit 650acd1337
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message SkipPlayerGameTimeReq {
bool isForceSet = 3;
uint32 clientGameTime = 1;
uint32 gameTime = 15;
}

View File

@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message SkipPlayerGameTimeRsp {
uint32 clientGameTime = 14;
uint32 gameTime = 15;
int32 retcode = 12;
}