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