Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 18, 2019 04:39
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/79ed11156fd0ac3701c17ce1cf5c97ef to your computer and use it in GitHub Desktop.
Save IntegerMan/79ed11156fd0ac3701c17ce1cf5c97ef to your computer and use it in GitHub Desktop.
public GameState BuildNewGameState(int id)
{
var state = new GameState(id);
state.Time = new GameTime(8, 4, 2422, 3, 20);
state.GenerateCrewMembers(8)
.GenerateSystems(10)
.GenerateWorkItems(15);
return state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment