mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
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";
|
|
|
|
// CmdId: 3437
|
|
// Name: CIFLDELJBNL
|
|
message WorldPlayerInfoNotify {
|
|
repeated PlayerWidgetInfo player_widget_info_list = 3;
|
|
repeated OnlinePlayerInfo player_info_list = 10;
|
|
repeated uint32 player_uid_list = 6;
|
|
}
|
|
|