Files
Fishing2Server/Entity/Chat/Component/ChatChannelCenterComponent.cs
2025-08-12 14:05:23 +08:00

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