mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
17 lines
399 B
Protocol Buffer
17 lines
399 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ActivityInfo.proto";
|
|
import "Uint32Pair.proto";
|
|
|
|
// CmdId: 2144
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message GetActivityInfoRsp {
|
|
int32 retcode = 13;
|
|
repeated ActivityInfo activity_info_list = 14;
|
|
repeated uint32 activated_sale_id_list = 2;
|
|
repeated Uint32Pair disable_transfer_point_interaction_list = 4;
|
|
}
|