update proto Achievement

This commit is contained in:
Yuuki 2023-08-24 04:16:55 +08:00
parent 3831cdff41
commit 30c4fdcb94
1 changed files with 8 additions and 2 deletions

View File

@ -16,10 +16,16 @@
syntax = "proto3";
import "Status.proto";
option java_package = "emu.grasscutter.net.proto";
// Obf: NJOHADFBICH
message Achievement {
message Achievement {
enum Status {
STATUS_INVALID = 0;
STATUS_UNFINISHED = 1;
STATUS_FINISHED = 2;
STATUS_REWARD_TAKEN = 3;
}
uint32 finish_timestamp = 15;
Status status = 10;
uint32 total_progress = 4;