mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
347 B
Protocol Buffer
18 lines
347 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: OANHOEBKLCP
|
|
message GadgetPlayUidInfo {
|
|
ProfilePicture profile_picture = 2;
|
|
string nickname = 14;
|
|
uint32 battle_watcher_id = 4;
|
|
uint32 uid = 11;
|
|
string online_id = 7;
|
|
uint32 score = 13;
|
|
uint32 icon = 8;
|
|
}
|
|
|