Files
favilla_problem/Core/IHealthView.cs
2026-06-29 19:26:37 +09:00

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;
}
}