17 lines
336 B
Protocol Buffer
17 lines
336 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
import "HitColliderType.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message HitCollision {
|
|
float attackeeHitEntityAngle = 12;
|
|
Rotation hitDir = 4;
|
|
Rotation hitPoint = 3;
|
|
int32 hitBoxIndex = 10;
|
|
float attackeeHitForceAngle = 15;
|
|
HitColliderType hitColliderType = 9;
|
|
}
|