First commit

This commit is contained in:
2026-06-29 19:26:37 +09:00
commit 9efb08fdf3
11 changed files with 338 additions and 0 deletions

14
Core/IHealthView.cs Normal file
View File

@@ -0,0 +1,14 @@
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;
}
}