PongFE/PongFE/Components/ScoreComponent.cs

15 lines
231 B
C#

using Encompass;
namespace PongFE.Components
{
public struct ScoreComponent : IComponent
{
public int Score { get; }
public ScoreComponent(int score)
{
Score = score;
}
}
}