mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 13:37:42 +00:00
d8f2421832
* BattlePass * BattlePass
16 lines
308 B
Protocol Buffer
16 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 2614
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message BattlePassBuySuccNotify {
|
|
uint32 schedule_id = 7;
|
|
uint32 product_play_type = 9;
|
|
repeated ItemParam item_list = 6;
|
|
uint32 add_point = 2;
|
|
}
|