Files
MovementTests/interfaces/IDisableable.cs
Minimata 7ba4a3db3f
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 30s
Create tag and build when new code gets to main / Export (push) Successful in 6m0s
fixed a few issues
2026-05-06 16:25:56 +02:00

12 lines
211 B
C#

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