10 lines
183 B
C#
10 lines
183 B
C#
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface IStun
|
||
|
{
|
||
|
bool IsStunned { get; set; }
|
||
|
void Stun(float stunTime);
|
||
|
}
|
||
|
}
|