using Godot; namespace Movementtests.interfaces; public interface IDisableable { bool IsDisabled { get; set; } [Export] float DisableDuration { get; set; } void Disable(); void Enable(); }