GC-Proto/proto/EvtBulletHitNotify.proto

23 lines
561 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ForwardType.proto";
import "HitColliderType.proto";
2023-02-28 04:12:44 +03:00
import "Vector.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: MLEDFBJMFMI
// CmdId: 391
2023-02-18 04:48:44 +03:00
message EvtBulletHitNotify {
2023-02-28 04:12:44 +03:00
HitColliderType hit_collider_type = 11;
uint32 forward_peer = 1;
uint32 entity_id = 4;
2023-04-03 09:51:55 +03:00
Vector hit_normal = 14; //BKOMGJHEOEC
uint32 hit_entity_id = 15; //JINNICGPCJE
2023-02-28 04:12:44 +03:00
int32 hit_box_index = 7;
2023-04-03 09:51:55 +03:00
Vector hit_point = 12; //CAHAHBKFCGF
2023-02-28 04:12:44 +03:00
ForwardType forward_type = 10;
2023-04-03 09:51:55 +03:00
uint32 single_bullet_id = 9; //BNICBNOHNAN
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00