mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-12 15:04:36 +01:00
add gacha pity list
This commit is contained in:
@@ -27,6 +27,6 @@ namespace EpinelPS
|
||||
SilverMileageTicket = 11000,
|
||||
GoldMileageTicket = 12000,
|
||||
SimulationRoomPoint = 13000,
|
||||
CharacterSkillResetTicket = 14000,
|
||||
CharacterSkillResetTicket = 14000
|
||||
}
|
||||
}
|
||||
19
EpinelPS/LobbyServer/Msgs/Gacha/ListPity.cs
Normal file
19
EpinelPS/LobbyServer/Msgs/Gacha/ListPity.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using EpinelPS.Utils;
|
||||
|
||||
namespace EpinelPS.LobbyServer.Msgs.Gacha
|
||||
{
|
||||
[PacketPath("/gacha/pity/list")]
|
||||
public class ListPity : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqListGachaPityProgress>();
|
||||
|
||||
var response = new ResListGachaPityProgress();
|
||||
|
||||
// TODO implement
|
||||
|
||||
await WriteDataAsync(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user