PongFE/PongFE/Components/PlayerInputComponent.cs

16 lines
303 B
C#

using Encompass;
using PongFE.Enums;
namespace PongFE.Components
{
public struct PlayerInputComponent : IComponent
{
public PlayerIndex PlayerIndex { get; }
public PlayerInputComponent(PlayerIndex playerIndex)
{
PlayerIndex = playerIndex;
}
}
}