Files
BakeryGame/Components/Player/HealthComponent.cs

8 lines
140 B
C#

using Scellecs.Morpeh;
namespace BakeryGame.Components.Player;
public struct HealthComponent : IComponent
{
public int HealthPoints;
}