mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
18 lines
345 B
Protocol Buffer
18 lines
345 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "ProfilePicture.proto";
|
||
|
import "ExhibitionDisplayInfo.proto";
|
||
|
|
||
|
message HideAndSeekSettleInfo {
|
||
|
uint32 uid = 1;
|
||
|
repeated ExhibitionDisplayInfo cardList = 2;
|
||
|
uint32 headImage = 3;
|
||
|
string onlineId = 10;
|
||
|
string nickname = 9;
|
||
|
ProfilePicture profilePicture = 5;
|
||
|
}
|