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; }
|
2024-03-25 20:54:56 -07:00
|
|
|
|
|
|
|
public bool HasParried { get; }
|
|
|
|
|
2023-06-03 18:21:46 -07:00
|
|
|
public bool IsParried { get; }
|
2024-03-25 20:54:56 -07:00
|
|
|
|
2023-06-03 18:21:46 -07:00
|
|
|
public ulong ParryTimeOrigin { get; }
|
2024-03-25 20:54:56 -07:00
|
|
|
|
2024-03-29 16:17:19 -07:00
|
|
|
public float BlockForce { get; }
|
|
|
|
|
|
|
|
public void Stun(float blockForce);
|
2023-05-23 00:23:53 -07:00
|
|
|
}
|