GC-Proto/proto/PlantFlowerFriendFlowerWishData.proto

15 lines
300 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: DBGHDOAFABF
2023-02-18 04:48:44 +03:00
message PlantFlowerFriendFlowerWishData {
2023-02-28 04:12:44 +03:00
map<uint32, uint32> flower_num_map = 15;
string nickname = 1;
ProfilePicture profile_picture = 6;
uint32 uid = 8;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00