mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
20 lines
349 B
Protocol Buffer
20 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
|
|
message InvestigationTarget {
|
|
enum State {
|
|
INVALID = 0;
|
|
IN_PROGRESS = 1;
|
|
COMPLETE = 2;
|
|
REWARD_TAKEN = 3;
|
|
}
|
|
uint32 progress = 1;
|
|
uint32 total_progress = 4;
|
|
uint32 investigation_id = 10;
|
|
uint32 quest_id = 11;
|
|
State state = 13;
|
|
}
|