12 lines
265 B
C#
12 lines
265 B
C#
![]() |
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);
|
||
|
}
|
||
|
}
|