Files
Yae/proto/AllAchievement.proto
HolographicHat 7743a98080 Initial commit
2022-03-21 22:10:02 +08:00

23 lines
302 B
Protocol Buffer

syntax = "proto3";
message AllAchievement {
repeated Achievement list = 1;
}
message Achievement {
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
uint32 id = 1;
Status status = 2;
uint32 current = 3;
uint32 require = 4;
uint32 finish_timestamp = 5;
}