CTT/Server/Model/Module/Actor/ActorMessageDispatcherCompo...

15 lines
391 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
using System.Collections.Generic;
namespace ET
{
/// <summary>
/// Actor消息分发组件
/// </summary>
public class ActorMessageDispatcherComponent: Entity
{
public static ActorMessageDispatcherComponent Instance;
public readonly Dictionary<Type, IMActorHandler> ActorMessageHandlers = new Dictionary<Type, IMActorHandler>();
}
}