GC-Proto/proto/AchievementInfo.proto

21 lines
432 B
Protocol Buffer
Raw Normal View History

2022-11-12 08:09:32 +03:00
// Proto has been converted from Sorapointa to Grasscutter format
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-12 08:09:32 +03:00
2023-01-28 17:00:48 +03:00
2022-11-12 08:09:32 +03:00
message AchievementInfo {
enum AchievementInfoStatus {
ACHIEVEMENT_INVALID = 0;
ACHIEVEMENT_UNFINISHED = 1;
ACHIEVEMENT_FINISHED = 2;
ACHIEVEMENT_POINT_TAKEN = 3;
}
uint32 id = 1;
AchievementInfoStatus status = 2;
uint32 current = 3;
uint32 goal = 4;
uint32 achievedate = 5;
}