16 lines
305 B
Protocol Buffer
16 lines
305 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SceneEntityInfo.proto";
|
|
import "VisionType.proto";
|
|
|
|
// Name: GKMPEPIEDNK
|
|
// CmdId: 234
|
|
message SceneEntityAppearNotify {
|
|
repeated SceneEntityInfo entity_list = 14;
|
|
uint32 param = 9;
|
|
VisionType appear_type = 5;
|
|
}
|
|
|