Destroyable chests

This commit is contained in:
MaddoScientisto 2025-03-12 22:01:45 +01:00
commit 80e0eda977
14 changed files with 253 additions and 27 deletions

View file

@ -0,0 +1,6 @@
namespace Cirno.Scripts.Components.Actors;
public interface IHittable
{
public void Hit(float damage, DamageType damageType = DamageType.Neutral);
}