Files
Yae/res/proto/AchievementInfo.proto
2023-03-30 08:54:50 +08:00

17 lines
307 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "Proto";
message AchievementItem {
uint32 pre = 1;
uint32 group = 2;
string name = 3;
string description = 4;
}
message AchievementInfo {
string version = 1;
map<uint32, string> group = 2;
map<uint32, AchievementItem> items = 3;
}