zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Module/Actor/ActorMessageDispatcherCompo...

15 lines
391 B
C#

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