mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
350 B
Protocol Buffer
18 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: IFDALNKLGJA
|
|
message FleurFairPlayerStatInfo {
|
|
ProfilePicture profile_picture = 11;
|
|
string online_id = 2;
|
|
uint32 head_image = 14;
|
|
string nick_name = 13;
|
|
uint32 uid = 12;
|
|
int32 param = 4;
|
|
uint32 stat_id = 1;
|
|
}
|
|
|