18 lines
302 B
Protocol Buffer
18 lines
302 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "ProfilePicture.proto";
|
||
|
|
||
|
message FleurFairPlayerStatInfo {
|
||
|
int32 param = 4;
|
||
|
ProfilePicture profilePicture = 14;
|
||
|
string onlineId = 3;
|
||
|
string nickName = 5;
|
||
|
uint32 statId = 2;
|
||
|
uint32 headImage = 8;
|
||
|
uint32 uid = 13;
|
||
|
}
|