using System; using System.Net.Sockets; namespace ET { [ActorMessageHandler] public class C2M_GetReSetSkillPriceHandler : AMActorLocationRpcHandler { 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; } } }