15 lines
259 B
Protocol Buffer
15 lines
259 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "ProfilePicture.proto";
|
||
|
|
||
|
message PlantFlowerRecvFlowerData {
|
||
|
string nickname = 12;
|
||
|
uint32 uid = 8;
|
||
|
ProfilePicture profilePicture = 3;
|
||
|
map<uint32, uint32> flowerNumMap = 9;
|
||
|
}
|