implement BattlePass (Except missions) (#1316)

* BattlePass

* BattlePass
This commit is contained in:
诗音澄鸢 镜苑芳依
2022-06-21 22:18:13 +08:00
committed by GitHub
parent 5c80146aaa
commit d8f2421832
37 changed files with 691 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "BattlePassRewardTakeOption.proto";
import "ItemParam.proto";
// CmdId: 2603
// EnetChannelId: 0
// EnetIsReliable: true
message TakeBattlePassRewardRsp {
int32 retcode = 2;
repeated BattlePassRewardTakeOption take_option_list = 1;
repeated ItemParam item_list = 5;
}