GC-Proto/proto/Investigation.proto

19 lines
309 B
Protocol Buffer
Raw Normal View History

2023-04-16 19:40:21 +03:00
syntax = "proto3";
2024-06-08 09:18:08 +03:00
2023-04-16 19:40:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-06-08 09:18:08 +03:00
// Version: 4.6.0
// Obfs: INJKDLOLFNC
2023-04-16 19:40:21 +03:00
message Investigation {
2023-05-23 13:12:42 +03:00
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
2024-06-08 09:18:08 +03:00
uint32 id = 6;
uint32 total_progress = 8;
State state = 9;
uint32 progress = 12;
}