Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 17, 2019 03:45
Embed
What would you like to do?
namespace MattEland.Starship.Logic
{
public class GameState
{
public GameState(int id)
{
Id = id;
}
public int Id { get; }
public int ClosedCount { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment