2023-08-17 07:57:46 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
2023-08-03 03:38:50 +00:00
|
|
|
// ReSharper disable once CheckNamespace
|
2023-08-03 05:49:05 +00:00
|
|
|
namespace BlueWaterProject
|
2023-08-03 03:38:50 +00:00
|
|
|
{
|
|
|
|
public interface IDamageable : IAiStat
|
|
|
|
{
|
2023-08-17 07:57:46 +00:00
|
|
|
public void TakeDamage(AiStat attacker, AiStat defender, Vector3? attackPos = null);
|
2023-08-03 03:38:50 +00:00
|
|
|
}
|
|
|
|
}
|