From 80c9effba1baa32ffe1808231f0ca0a67d911034 Mon Sep 17 00:00:00 2001 From: Yazawazi <47273265+Yazawazi@users.noreply.github.com> Date: Sun, 24 Apr 2022 07:37:51 +0800 Subject: [PATCH] AvatarPromoteGetReward --- proto/AvatarPromoteGetRewardReq.proto | 8 ++++++++ proto/AvatarPromoteGetRewardRsp.proto | 10 ++++++++++ 2 files changed, 18 insertions(+) create mode 100644 proto/AvatarPromoteGetRewardReq.proto create mode 100644 proto/AvatarPromoteGetRewardRsp.proto diff --git a/proto/AvatarPromoteGetRewardReq.proto b/proto/AvatarPromoteGetRewardReq.proto new file mode 100644 index 0000000..b0d5c22 --- /dev/null +++ b/proto/AvatarPromoteGetRewardReq.proto @@ -0,0 +1,8 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message AvatarPromoteGetRewardReq { + uint64 avatarGuid = 1; + uint32 promoteLevel = 2; +} diff --git a/proto/AvatarPromoteGetRewardRsp.proto b/proto/AvatarPromoteGetRewardRsp.proto new file mode 100644 index 0000000..42c7d78 --- /dev/null +++ b/proto/AvatarPromoteGetRewardRsp.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +message AvatarPromoteGetRewardRsp { + int32 retcode = 1; + uint64 avatarGuid = 2; + uint32 promoteLevel = 3; + uint32 rewardId = 4; +}