Files
Fishing2Server/Entity/Chat/ChatChannelCenterComponent.cs
2025-08-08 18:21:11 +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>();
}