GC-Proto/proto/PlantFlowerRecvFlowerData.proto

15 lines
293 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: AEGNPAKEEEJ
2023-02-18 04:48:44 +03:00
message PlantFlowerRecvFlowerData {
2023-02-28 04:12:44 +03:00
map<uint32, uint32> flower_num_map = 1;
ProfilePicture profile_picture = 7;
uint32 uid = 2;
string nickname = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00