Files
Yae/res/proto/AchievementAllDataNotify.proto
HolographicHat 793ad075fe 4.8
2024-07-17 18:12:24 +08:00

22 lines
357 B
Protocol Buffer

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