Compare commits
3 Commits
6464de6066
...
7f5e053290
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f5e053290 | ||
|
|
77da319ac2 | ||
|
|
80c9effba1 |
8
proto/AvatarPromoteGetRewardReq.proto
Normal file
8
proto/AvatarPromoteGetRewardReq.proto
Normal file
@@ -0,0 +1,8 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message AvatarPromoteGetRewardReq {
|
||||
uint64 avatarGuid = 1;
|
||||
uint32 promoteLevel = 2;
|
||||
}
|
||||
10
proto/AvatarPromoteGetRewardRsp.proto
Normal file
10
proto/AvatarPromoteGetRewardRsp.proto
Normal file
@@ -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;
|
||||
}
|
||||
7
proto/PlayerLevelRewardUpdateNotify.proto
Normal file
7
proto/PlayerLevelRewardUpdateNotify.proto
Normal file
@@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message PlayerLevelRewardUpdateNotify {
|
||||
repeated uint32 levelList = 1;
|
||||
}
|
||||
7
proto/TakePlayerLevelRewardReq.proto
Normal file
7
proto/TakePlayerLevelRewardReq.proto
Normal file
@@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message TakePlayerLevelRewardReq {
|
||||
uint32 level = 1;
|
||||
}
|
||||
9
proto/TakePlayerLevelRewardRsp.proto
Normal file
9
proto/TakePlayerLevelRewardRsp.proto
Normal file
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message TakePlayerLevelRewardRsp {
|
||||
int32 retcode = 1;
|
||||
uint32 level = 2;
|
||||
uint32 rewardId = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user