GC-Proto/proto/MainCoop.proto

24 lines
475 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-02-28 04:12:44 +03:00
// Name: GGFJJJMBFNM
2023-02-18 04:48:44 +03:00
message MainCoop {
2023-02-28 04:12:44 +03:00
// Name: CPHIAOBBAMM
enum Status {
INVALID = 0;
RUNNING = 1;
FINISHED = 2;
}
repeated uint32 save_point_id_list = 4;
uint32 id = 2;
uint32 self_confidence = 12;
map<uint32, int32> PENJAEJFOCP = 15;
map<uint32, int32> GIINOODGCOO = 3;
map<uint32, uint32> seen_ending_map = 1;
Status status = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00