11 lines
208 B
C#
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>();
|
|
} |