2023-08-30 14:32:11 +03:00
|
|
|
syntax = "proto3";
|
2024-08-28 12:09:22 +03:00
|
|
|
|
2023-08-30 14:32:11 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-08-28 12:09:22 +03:00
|
|
|
// Version: 5.0
|
|
|
|
// CmdId: 2465
|
|
|
|
|
2023-08-30 14:32:11 +03:00
|
|
|
import "HitColliderType.proto";
|
2024-08-28 12:09:22 +03:00
|
|
|
import "ForwardType.proto";
|
2023-08-30 14:32:11 +03:00
|
|
|
import "Vector.proto";
|
2024-08-28 12:09:22 +03:00
|
|
|
|
|
|
|
message EvtBulletHitNotify {
|
|
|
|
uint32 single_bullet_id = 4;
|
|
|
|
uint32 forward_peer = 5;
|
|
|
|
int32 hit_box_index = 7;
|
|
|
|
HitColliderType hit_collider_type = 9;
|
|
|
|
uint32 entity_id = 10;
|
|
|
|
ForwardType forward_type = 11;
|
|
|
|
Vector hit_point = 13;
|
|
|
|
uint32 hit_entity_id = 14;
|
|
|
|
Vector hit_pointhit_normal = 15;
|
|
|
|
}
|