Files
Yae/res/proto/AchievementAllDataNotify.proto
HolographicHat bf5525d2ea 5.1
2024-10-09 16:03:25 +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 = 11;
uint32 current = 5;
uint32 total = 15;
uint32 id = 2;
Status status = 7;
}
message AchievementAllDataNotify {
repeated Achievement list = 4;
}