GC-Proto/proto/Investigation.proto

19 lines
310 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
2024-07-05 00:44:58 +03:00
// Version: 4.7.0
// Obfs: KMDDNLBJLJJ
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
2024-07-05 00:44:58 +03:00
uint32 id = 13;
uint32 total_progress = 7;
State state = 1;
uint32 progress = 15;
2024-06-08 09:18:08 +03:00
}