GC-Proto/proto/GadgetPlayUidInfo.proto

18 lines
347 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-04-11 06:14:48 +03:00
// Name: OANHOEBKLCP
2023-02-18 04:48:44 +03:00
message GadgetPlayUidInfo {
2023-04-11 06:14:48 +03:00
ProfilePicture profile_picture = 2;
2023-02-28 04:12:44 +03:00
string nickname = 14;
2023-04-11 06:14:48 +03:00
uint32 battle_watcher_id = 4;
uint32 uid = 11;
string online_id = 7;
uint32 score = 13;
uint32 icon = 8;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00