move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

12
proto/HitCollision.proto Normal file → Executable file
View File

@@ -6,10 +6,10 @@ 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;
HitColliderType hit_collider_type = 1;
int32 hit_box_index = 2;
Vector hit_point = 3;
Vector hit_dir = 4;
float attackee_hit_force_angle = 5;
float attackee_hit_entity_angle = 6;
}