fix achievement proto (#507)

* fix achievement proto

TakeAchievementRewardReq tells client the achievements achieved or not and it's progress.

* add import
This commit is contained in:
ShigemoriHakura
2022-05-05 01:06:33 +08:00
committed by GitHub
parent 823040be56
commit 022dcf60ad
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AchievementInfo.proto";
message TakeAchievementRewardReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 2677;
}
repeated AchievementInfo a_list = 1;
}