mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
18 lines
380 B
Protocol Buffer
18 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message MainCoop {
|
|
enum Status {
|
|
INVALID = 0;
|
|
RUNNING = 1;
|
|
FINISHED = 2;
|
|
}
|
|
uint32 self_confidence = 5;
|
|
Status status = 1;
|
|
repeated uint32 save_point_id_list = 9;
|
|
uint32 id = 6;
|
|
map<uint32, int32> GEHNFJEPCJL = 12;
|
|
map<uint32, int32> GDBKBKACDFO = 8;
|
|
map<uint32, uint32> seen_ending_map = 3;
|
|
}
|