GC-Proto/proto/GadgetPlayUidInfo.proto

18 lines
348 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ProfilePicture.proto";
2023-02-28 04:12:44 +03:00
// Name: LFBMJINBKHB
2023-02-18 04:48:44 +03:00
message GadgetPlayUidInfo {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00