Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 17, 2019 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/77fa2d6e44ed6177284ca3baff9bedde to your computer and use it in GitHub Desktop.
Save IntegerMan/77fa2d6e44ed6177284ca3baff9bedde to your computer and use it in GitHub Desktop.
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