Initial commit

This commit is contained in:
Melledy
2022-04-19 10:02:20 -07:00
commit 0537e9cc4c
367 changed files with 4497 additions and 0 deletions

25
proto/PlatformInfo.proto Normal file
View File

@@ -0,0 +1,25 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "MovingPlatformType.proto";
import "Route.proto";
import "Vector.proto";
message PlatformInfo {
uint32 routeId = 1;
int32 startIndex = 2;
uint32 startRouteTime = 3;
uint32 startSceneTime = 4;
Vector startPos = 7;
bool isStarted = 8;
MathQuaternion startRot = 9;
uint32 stopSceneTime = 10;
Vector posOffset = 11;
MathQuaternion rotOffset = 12;
MovingPlatformType movingPlatformType = 13;
bool isActive = 14;
Route route = 15;
uint32 pointId = 16;
}