mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
21 lines
519 B
Protocol Buffer
21 lines
519 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 2465
|
|
|
|
import "HitColliderType.proto";
|
|
import "ForwardType.proto";
|
|
import "Vector.proto";
|
|
|
|
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;
|
|
}
|