GC-Proto/proto/Investigation.proto
2024-08-28 17:09:22 +08:00

19 lines
302 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
message Investigation {
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
uint32 id = 1;
State state = 8;
uint32 total_progress = 9;
uint32 progress = 12;
}