Net.Project.B/Src/Interaction/IDynamicInteractable.cs

16 lines
361 B
C#

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; }
}
}