11 lines
239 B
C#
11 lines
239 B
C#
|
namespace SupaLidlGame.Items.Weapons
|
||
|
{
|
||
|
public interface IParryable
|
||
|
{
|
||
|
public bool IsParryable { get; }
|
||
|
public bool IsParried { get; }
|
||
|
public ulong ParryTimeOrigin { get; }
|
||
|
public void Stun();
|
||
|
}
|
||
|
}
|