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

12 lines
265 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWater
{
public interface IDamageable : IAiStat
{
public void TakeDamage(AiStat attacker, AiStat defender);
}
}