using System; using Model; namespace Hotfix { [MessageHandler(AppType.Realm)] public class C2R_PingHandler : AMRpcHandler { protected override void Run(Session session, C2R_Ping message, Action reply) { R2C_Ping r2CPing = new R2C_Ping(); reply(r2CPing); } } }