SupaLidlGame/Items/Weapons/IParryable.cs

17 lines
303 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; }
public float BlockForce { get; }
public void Stun(float blockForce);
2023-05-23 00:23:53 -07:00
}