Files
Yae/res/proto/AchievementAllDataNotify.proto
HolographicHat c60d3a3b82 v2.7
2023-04-12 12:28:03 +08:00

22 lines
356 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "Proto";
message Achievement {
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
uint32 timestamp = 9;
uint32 current = 3;
uint32 total = 4;
uint32 id = 10;
Status status = 2;
}
message AchievementAllDataNotify {
repeated Achievement list = 11;
}