GC-Proto/proto/Investigation.proto

22 lines
362 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: JIDKKFKPDIH
2023-02-18 04:48:44 +03:00
message Investigation {
2023-04-11 06:14:48 +03:00
// Name: PMHIABIOPBE
2023-02-28 04:12:44 +03:00
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
2023-04-11 06:14:48 +03:00
uint32 total_progress = 11;
State state = 8;
uint32 id = 3;
uint32 progress = 15;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00