mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-13 09:58:13 +08:00
23 lines
302 B
Protocol Buffer
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;
|
|
|
|
}
|