Created
September 18, 2019 04:39
-
-
Save IntegerMan/79ed11156fd0ac3701c17ce1cf5c97ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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