mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-03 12:45:55 +00:00
6 lines
156 B
C#
6 lines
156 B
C#
|
|
namespace Cirno.Scripts.Components.Actors;
|
|||
|
|
|
|||
|
|
public interface IHittable
|
|||
|
|
{
|
|||
|
|
public void Hit(float damage, DamageType damageType = DamageType.Neutral);
|
|||
|
|
}
|