mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-17 09:25:06 +01:00
Added interface display for multiplayer games (#360)
This commit is contained in:
6
proto/GetOnlinePlayerListReq.proto
Normal file
6
proto/GetOnlinePlayerListReq.proto
Normal file
@@ -0,0 +1,6 @@
|
||||
syntax = "proto3";
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message GetOnlinePlayerListReq {
|
||||
uint32 targetUid = 1;
|
||||
}
|
||||
10
proto/GetOnlinePlayerListRsp.proto
Normal file
10
proto/GetOnlinePlayerListRsp.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user