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); } }