GC-Proto/proto/FleurFairPlayerStatInfo.proto

18 lines
350 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: IFDALNKLGJA
2023-02-18 04:48:44 +03:00
message FleurFairPlayerStatInfo {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00