GC-Proto/proto/Investigation.proto

19 lines
302 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-08-28 12:09:22 +03:00
// Version: 5.0
2024-06-08 09:18:08 +03:00
2023-04-16 19:40:21 +03:00
message Investigation {
2024-08-28 12:09:22 +03:00
enum State {
2023-05-23 13:12:42 +03:00
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
2024-08-28 12:09:22 +03:00
uint32 id = 1;
State state = 8;
uint32 total_progress = 9;
uint32 progress = 12;
}