GC-Proto/proto/Achievement.proto

18 lines
313 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
import "Status.proto";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 06:08:38 +03:00
// Name: IMEFDIKAJBD
message Achievement {
2023-03-07 05:02:26 +03:00
// Name: JPGOFPINCMO > Status
2023-02-28 06:08:38 +03:00
uint32 cur_progress = 2;
uint32 finish_timestamp = 13;
Status status = 6;
uint32 total_progress = 5;
uint32 id = 9;
}
2023-03-07 05:02:26 +03:00