2023-08-30 14:32:11 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ForwardType.proto";
|
|
|
|
import "HitColliderType.proto";
|
|
|
|
import "Vector.proto";
|
2024-08-21 00:45:19 +03:00
|
|
|
// 4.7.0
|
|
|
|
// CmdId: 5735
|
2024-08-21 08:31:37 +03:00
|
|
|
// Obf: ??
|
2023-08-30 14:32:11 +03:00
|
|
|
message EvtBulletHitNotify {
|
2024-08-21 00:45:19 +03:00
|
|
|
ForwardType forward_type = 1;
|
|
|
|
HitColliderType hit_collider_type = 7;
|
2024-08-21 08:31:37 +03:00
|
|
|
Vector hit_point = 11; // sus
|
|
|
|
Vector hit_normal = 5; // sus
|
2024-08-21 00:45:19 +03:00
|
|
|
uint32 entity_id = 6;
|
|
|
|
int32 hit_box_index = 14;
|
|
|
|
uint32 forward_peer = 9;
|
|
|
|
uint32 uk1 = 8;
|
|
|
|
uint32 uk2 = 15;
|
2023-08-30 14:32:11 +03:00
|
|
|
}
|