16 lines
363 B
Protocol Buffer
16 lines
363 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "OnlinePlayerInfo.proto";
|
|
import "PlayerWidgetInfo.proto";
|
|
|
|
// Name: IIPBPCIBJNJ
|
|
// CmdId: 3247
|
|
message WorldPlayerInfoNotify {
|
|
repeated OnlinePlayerInfo player_info_list = 6;
|
|
repeated PlayerWidgetInfo player_widget_info_list = 15;
|
|
repeated uint32 player_uid_list = 3;
|
|
}
|
|
|