| 1234567891011121314 |
- using System.Threading.Tasks;
- using ETModel;
- namespace ETHotfix
- {
- [ActorMessageHandler(AppType.Map)]
- public class Actor_TestHandler : AMActorHandler<Unit, Actor_Test>
- {
- protected override void Run(Unit unit, Actor_Test message)
- {
- Log.Debug(message.Info);
- }
- }
- }
|