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

15 lines
391 B
C#
Executable File

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>();
}
}