Initial commit

This commit is contained in:
Melledy
2022-04-17 05:43:07 -07:00
commit 3b45ff7d46
1078 changed files with 367097 additions and 0 deletions

18
proto/MotionInfo.proto Normal file
View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MotionState.proto";
import "Vector.proto";
message MotionInfo {
Vector pos = 1;
Vector rot = 2;
Vector speed = 3;
MotionState state = 4;
repeated Vector params = 5;
Vector refPos = 6;
uint32 refId = 7;
uint32 sceneTime = 8;
uint32 intervalVelocity = 9;
}