mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
18 lines
348 B
Protocol Buffer
18 lines
348 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: LFBMJINBKHB
|
|
message GadgetPlayUidInfo {
|
|
uint32 uid = 3;
|
|
ProfilePicture profile_picture = 1;
|
|
uint32 score = 13;
|
|
string nickname = 14;
|
|
uint32 icon = 2;
|
|
string online_id = 11;
|
|
uint32 battle_watcher_id = 12;
|
|
}
|
|
|