13 lines
408 B
C#
13 lines
408 B
C#
using Fluxor;
|
|
using KoogleApp.Store.Game.ThrowPanel;
|
|
|
|
namespace KoogleApp.Store.Game.Setup
|
|
{
|
|
[FeatureState]
|
|
public record SetupState(ThrowMode ThrowMode, int ThrowsPerRound, int[] Players, ParticipantsMode ParticipantsMode)
|
|
{
|
|
public SetupState() : this(ThrowMode: ThrowMode.Reposition, ThrowsPerRound:3, Players:[], ParticipantsMode: ParticipantsMode.FreeToChoose)
|
|
{ }
|
|
}
|
|
}
|