Files
Yae/res/proto/AchievementAllDataNotify.proto
HolographicHat f41fe6fb12 4.1
* #71
2023-09-28 18:48:00 +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 = 3;
uint32 current = 14;
uint32 total = 8;
uint32 id = 1;
Status status = 13;
}
message AchievementAllDataNotify {
repeated Achievement list = 2;
}