mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
307 B
Protocol Buffer
16 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SceneEntityInfo.proto";
|
|
import "VisionType.proto";
|
|
|
|
// CmdId: 3060
|
|
// Name: FPPNHNKFNPK
|
|
message SceneEntityUpdateNotify {
|
|
uint32 param = 2;
|
|
repeated SceneEntityInfo entity_list = 15;
|
|
VisionType appear_type = 10;
|
|
}
|
|
|