16 lines
451 B
C#
16 lines
451 B
C#
|
using System;
|
|||
|
using System.Net.Sockets;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
[ActorMessageHandler]
|
|||
|
public class C2M_GetReSetSkillPriceHandler : AMActorLocationRpcHandler<Unit, C2M_GetReSetSkillPrice, M2C_GetReSetSkillPrice>
|
|||
|
{
|
|||
|
protected override async ETTask Run(Unit unit, C2M_GetReSetSkillPrice request, M2C_GetReSetSkillPrice response, Action reply)
|
|||
|
{
|
|||
|
response.Voucher = C2M_ReSetSkillHandler.RESET_Price;
|
|||
|
reply();
|
|||
|
await ETTask.CompletedTask;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|