mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
22 lines
361 B
Protocol Buffer
22 lines
361 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: NFAGLBHALKL
|
||
|
message Investigation {
|
||
|
// Name: DMECJPCEPNH
|
||
|
enum State {
|
||
|
INVALID = 0;
|
||
|
IN_PROGRESS = 1;
|
||
|
COMPLETE = 2;
|
||
|
REWARD_TAKEN = 3;
|
||
|
}
|
||
|
|
||
|
uint32 id = 2;
|
||
|
State state = 4;
|
||
|
uint32 total_progress = 5;
|
||
|
uint32 progress = 11;
|
||
|
}
|
||
|
|