GC-Proto/proto/StartCoopPointRsp.proto

16 lines
274 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 "MainCoop.proto";
2023-02-28 04:12:44 +03:00
// Name: MMKIGHGCLAJ
// CmdId: 1967
2023-02-18 04:48:44 +03:00
message StartCoopPointRsp {
2023-02-28 04:12:44 +03:00
int32 retcode = 6;
bool is_start = 12;
uint32 coop_point = 10;
MainCoop start_main_coop = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00