11 lines
249 B
C#
11 lines
249 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace NB.Chat;
|
|
|
|
/// <summary>
|
|
/// 聊天频道管理
|
|
/// </summary>
|
|
public class ChatChannelCenterComponent : Entity
|
|
{
|
|
public readonly Dictionary<long, ChatChannel> Channels = new Dictionary<long, ChatChannel>();
|
|
} |