15 lines
252 B
C#
15 lines
252 B
C#
using System;
|
|
|
|
namespace Core
|
|
{
|
|
public interface IHealthView
|
|
{
|
|
int CurrentHP { get; }
|
|
int MaxHP { get; }
|
|
bool IsDead { get; }
|
|
|
|
event Action<int, int> HPChanged; //<Max,Current>
|
|
event Action Died;
|
|
}
|
|
}
|