8 lines
176 B
C#

using Fantasy.Entitas;
public class ChatChannel : Entity
{
public readonly HashSet<EntityReference<ChatUnit>> ChatUnits = new HashSet<EntityReference<ChatUnit>>();
}