Merge pull request #5 from yarik0chka/main

Protos for sitting
This commit is contained in:
Melledy
2022-04-23 01:20:47 -07:00
committed by GitHub
2 changed files with 21 additions and 0 deletions

10
proto/SitReq.proto Normal file
View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
message SitReq {
uint64 chair_id = 1;
Vector position = 2;
}

11
proto/SitRsp.proto Normal file
View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
message SitRsp {
uint32 entity_id = 2;
Vector position = 3;
uint64 chair_id = 4;
}