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

11 lines
208 B
C#

using Fantasy.Entitas;
namespace NB.Chat;
/// <summary>
/// 聊天频道实体
/// </summary>
public class ChatChannelComponent : Entity
{
public readonly HashSet<long> Units = new HashSet<long>();
}