/// <summary> /// Sets the Game you wish to edit once the object is constructed. /// </summary> /// <param name="game">The game you wish to edit.</param> public PreferenceForm(InbetweenerGame game) { InitializeComponent(); Game = game; Initialize(); }
public void Init() { // Create a new game game = new InbetweenerGame(); // Start the game StartGame(); // Update the form UpdateForm(); }