16 lines
295 B
Protocol Buffer
16 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "OnlinePlayerInfo.proto";
|
|
|
|
// CmdId: 82
|
|
// Name: MOHMOIHPLNM
|
|
message GetOnlinePlayerInfoRsp {
|
|
OnlinePlayerInfo target_player_info = 9;
|
|
uint32 param = 3;
|
|
int32 retcode = 14;
|
|
uint32 target_uid = 15;
|
|
}
|
|
|