mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-07 17:46:08 +03:00
16 lines
318 B
Protocol Buffer
16 lines
318 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SceneEntityInfo.proto";
|
|
import "VisionType.proto";
|
|
|
|
// CmdId: 217
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message SceneEntityAppearNotify {
|
|
repeated SceneEntityInfo entity_list = 6;
|
|
VisionType appear_type = 8;
|
|
uint32 param = 11;
|
|
}
|