Files
Fishing2Server/Entity/Chat/ChatChannelCenterComponent.cs
2025-08-08 09:13:09 +08:00

11 lines
267 B
C#

using Fantasy.Entitas;
namespace NB.Chat;
/// <summary>
/// 聊天频道管理
/// </summary>
public class ChatChannelCenterComponent : Entity
{
public readonly Dictionary<long, ChatChannelComponent> Channels = new Dictionary<long, ChatChannelComponent>();
}