Actor_TestHandler.cs 277 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. using ETModel;
  3. namespace ETHotfix
  4. {
  5. [ActorMessageHandler(AppType.Map)]
  6. public class Actor_TestHandler : AMActorHandler<Unit, Actor_Test>
  7. {
  8. protected override void Run(Unit unit, Actor_Test message)
  9. {
  10. Log.Debug(message.Info);
  11. }
  12. }
  13. }