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

11 lines
290 B
C#
Raw Normal View History

using UnityEngine;
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface IDamageable
{
public void TakeDamage(float attackerPower, float attackerShieldPenetrationRate = default, Vector3? attackPos = null);
public void Die();
}
}