12 lines
202 B
C#
12 lines
202 B
C#
using Godot;
|
|
|
|
namespace Movementtests.interfaces;
|
|
|
|
public interface IStunnable
|
|
{
|
|
bool IsStunned { get; set; }
|
|
[Export] float StunDuration { get; set; }
|
|
|
|
void Stun();
|
|
void Unstun();
|
|
} |