Files
Net.Project.B/Src/Interaction/IDynamicInteractable.cs
CortexCore 4c2534a6e9 1
2025-04-28 15:10:49 +08:00

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