mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
16 lines
326 B
Protocol Buffer
16 lines
326 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "HitColliderType.proto";
|
||
|
import "Vector.proto";
|
||
|
|
||
|
message HitCollision {
|
||
|
HitColliderType hitColliderType = 1;
|
||
|
int32 hitBoxIndex = 2;
|
||
|
Vector hitPoint = 3;
|
||
|
Vector hitDir = 4;
|
||
|
float attackeeHitForceAngle = 5;
|
||
|
float attackeeHitEntityAngle = 6;
|
||
|
}
|