mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
24 lines
490 B
Protocol Buffer
24 lines
490 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: KHPANMIGJGL
|
|
message BattlePassMission {
|
|
// Name: MLHPECMMCJI
|
|
enum MissionStatus {
|
|
MISSION_INVALID = 0;
|
|
MISSION_UNFINISHED = 1;
|
|
MISSION_FINISHED = 2;
|
|
MISSION_POINT_TAKEN = 3;
|
|
}
|
|
|
|
uint32 CGCJJAMPFME = 11;
|
|
uint32 cur_progress = 1;
|
|
uint32 INNGDEGBMHO = 10;
|
|
uint32 total_progress = 5;
|
|
uint32 mission_id = 12;
|
|
MissionStatus mission_status = 3;
|
|
}
|
|
|