mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-26 13:11:09 +00:00
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;
|
||
|
}
|