1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-06 00:56:07 +03:00
GC-Proto/proto/Investigation.proto
2024-07-05 05:44:58 +08:00

19 lines
310 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 4.7.0
// Obfs: KMDDNLBJLJJ
message Investigation {
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
uint32 id = 13;
uint32 total_progress = 7;
State state = 1;
uint32 progress = 15;
}