14 lines
301 B
C#
14 lines
301 B
C#
|
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface ICombatable
|
||
|
{
|
||
|
void DisableMove(float time);
|
||
|
void Stun(float stunTime);
|
||
|
void StopStun();
|
||
|
void AddForceToDirection(Vector3 direction, float power);
|
||
|
}
|
||
|
}
|