17 lines
453 B
C#
17 lines
453 B
C#
using KoogleApp.Store.Game.ThrowPanel;
|
|
|
|
namespace KoogleApp.Store.Game.Setup
|
|
{
|
|
public record SetThrowModeAction(ThrowMode ThrowMode);
|
|
|
|
public record SetThrowsPerRoundAction(int ThrowsPerRound);
|
|
|
|
public record SetParticipantsModeAction(ParticipantsMode ParticipantsMode);
|
|
|
|
public record LoadSetupStatesFromSessionAction();
|
|
|
|
public record SetupStateLoadedAction(SetupState SetupState);
|
|
|
|
public record ResetSetupStateAction();
|
|
}
|