using Godot; namespace Movementtests.interfaces; public interface IStunnable { bool IsStunned { get; set; } [Export] float StunDuration { get; set; } void Stun(); void Unstun(); }