2D-Platformer/Assets/Scripts/Prefabs/Items/IHealItem.cs
2022-02-12 12:53:50 +02:00

7 lines
No EOL
80 B
C#

namespace Items
{
public interface IHealItem
{
float Health { get; }
}
}