mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
9 lines
117 B
C#
9 lines
117 B
C#
namespace MathDice
|
|
{
|
|
public enum GameState
|
|
{
|
|
FirstAttempt = 0,
|
|
SecondAttempt = 1,
|
|
}
|
|
}
|