15 lines
391 B
C#
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>();
|
|
}
|
|
} |