mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
18 lines
390 B
Protocol Buffer
18 lines
390 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: IHGNENANDMD
|
|
message HideAndSeekSettleInfo {
|
|
string online_id = 12;
|
|
repeated ExhibitionDisplayInfo card_list = 11;
|
|
uint32 head_image = 1;
|
|
ProfilePicture profile_picture = 13;
|
|
string nickname = 14;
|
|
uint32 uid = 4;
|
|
}
|
|
|