Added interface display for multiplayer games (#360)

This commit is contained in:
BaiSugar
2022-04-30 00:20:46 +08:00
committed by GitHub
parent d99493149a
commit cacba61b79
5 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message GetOnlinePlayerListReq {
uint32 targetUid = 1;
}

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "OnlinePlayerInfo.proto";
message GetOnlinePlayerListRsp {
int32 retcode = 1;
repeated OnlinePlayerInfo player_info_list = 2;
uint32 param = 3;
uint32 targetUid = 4;
}