OldBlueWater/BlueWater/Assets/02.Scripts/Interface/IDamageable.cs

10 lines
239 B
C#
Raw Normal View History

using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface IDamageable : IAiStat
{
public void TakeDamage(AiStat attacker, AiStat defender, Vector3? attackPos = null);
}
}