SupaLidlGame/Items/Weapons/IParryable.cs

15 lines
249 B
C#
Raw Normal View History

2023-06-03 18:21:46 -07:00
namespace SupaLidlGame.Items.Weapons;
public interface IParryable
2023-05-23 00:23:53 -07:00
{
2023-06-03 18:21:46 -07:00
public bool IsParryable { get; }
public bool HasParried { get; }
2023-06-03 18:21:46 -07:00
public bool IsParried { get; }
2023-06-03 18:21:46 -07:00
public ulong ParryTimeOrigin { get; }
2023-06-03 18:21:46 -07:00
public void Stun();
2023-05-23 00:23:53 -07:00
}