mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
18 lines
326 B
Protocol Buffer
18 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerDieType.proto";
|
|
|
|
// CmdId: 296
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message WorldPlayerDieNotify {
|
|
PlayerDieType die_type = 9;
|
|
uint32 murderer_entity_id = 14;
|
|
oneof entity {
|
|
uint32 monster_id = 10;
|
|
uint32 gadget_id = 11;
|
|
}
|
|
}
|