mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
255 B
Protocol Buffer
15 lines
255 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "ProfilePicture.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message CrucibleBattleUidInfo {
|
|
string nickname = 4;
|
|
uint32 icon = 5;
|
|
uint32 uid = 2;
|
|
ProfilePicture profilePicture = 11;
|
|
string onlineId = 6;
|
|
}
|