public EGGEditor() { InitializeComponent(); game = new Game1(this); this.Show(); game.Run(); }
public MoveModel1(DrawableModel model, GameModel gameModel, Game1 game, EGGEditor eggEditor) { InitializeComponent(); this.model = model; this.gameModel = gameModel; this.game = game; this.eggEditor = eggEditor; }
public NewLevel(Game1 game, EGGEditor eggEditor) { InitializeComponent(); this.eggEditor = eggEditor; this.game = game; }