using System.Collections; using System.Collections.Generic; using BITKit; namespace Net.Project.B.Interaction { public class DynamicInteractable:IWorldInteractable { public bool Enabled => Allow.Allow; public readonly ValidHandle Allow=new(); public object WorldObject { get; set; } public int Id { get; set; } } }