Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 23, 2019 05:11
Show Gist options
  • Save IntegerMan/bfb6da0b24945f1c310aea5a0aa5462e to your computer and use it in GitHub Desktop.
Save IntegerMan/bfb6da0b24945f1c310aea5a0aa5462e to your computer and use it in GitHub Desktop.
public string GameStatusText => _state.SimState switch
{
Simulator.SimulationState.Won => "Won",
Simulator.SimulationState.Lost => "Lost",
_ => "Simulating"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment