mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-31 08:13:00 +08: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;
|
||
|
}
|