quest fix & personal line impl

This commit is contained in:
Akka
2022-07-05 20:41:07 +08:00
committed by Luke H-W
parent 0141dcebea
commit a788828a99
65 changed files with 1136 additions and 200 deletions

9
proto/Vector3Int.proto Normal file
View File

@@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message Vector3Int {
int32 x = 1;
int32 y = 2;
int32 z = 3;
}