Files
Yae/res/proto/AchievementAllDataNotify.proto
HolographicHat 1f311ed987 4.5
2024-03-14 23:55:36 +08:00

22 lines
358 B
Protocol Buffer

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