add gacha pity list

This commit is contained in:
Mikhail
2024-11-02 13:42:51 -04:00
parent 7170abc770
commit bb2132de81
2 changed files with 20 additions and 1 deletions

View File

@@ -27,6 +27,6 @@ namespace EpinelPS
SilverMileageTicket = 11000,
GoldMileageTicket = 12000,
SimulationRoomPoint = 13000,
CharacterSkillResetTicket = 14000,
CharacterSkillResetTicket = 14000
}
}

View 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);
}
}
}