GC-Proto/proto/CoopDataNotify.proto

16 lines
317 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CoopChapter.proto";
2023-02-28 04:12:44 +03:00
// Name: KMBIEGGBPMF
// CmdId: 1994
2023-02-18 04:48:44 +03:00
message CoopDataNotify {
2023-02-28 04:12:44 +03:00
repeated CoopChapter chapter_list = 15;
repeated uint32 viewed_chapter_list = 2;
bool is_have_progress = 11;
uint32 cur_coop_point = 4;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00