update proto Achievement
This commit is contained in:
parent
3831cdff41
commit
30c4fdcb94
|
@ -16,10 +16,16 @@
|
||||||
|
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
import "Status.proto";
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
// Obf: NJOHADFBICH
|
// 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;
|
uint32 finish_timestamp = 15;
|
||||||
Status status = 10;
|
Status status = 10;
|
||||||
uint32 total_progress = 4;
|
uint32 total_progress = 4;
|
||||||
|
|
Loading…
Reference in New Issue