mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
18 lines
389 B
Protocol Buffer
18 lines
389 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: JKPKCHPJLBK
|
|
message HideAndSeekSettleInfo {
|
|
repeated ExhibitionDisplayInfo card_list = 4;
|
|
string online_id = 11;
|
|
uint32 uid = 9;
|
|
ProfilePicture profile_picture = 12;
|
|
uint32 head_image = 10;
|
|
string nickname = 3;
|
|
}
|
|
|