예제 #1
0
 public EGGEditor()
 {
     InitializeComponent();
     game = new Game1(this);
     this.Show();
     game.Run();
 }
예제 #2
0
 public MoveModel1(DrawableModel model, GameModel gameModel, Game1 game, EGGEditor eggEditor)
 {
     InitializeComponent();
     this.model = model;
     this.gameModel = gameModel;
     this.game = game;
     this.eggEditor = eggEditor;
 }
예제 #3
0
파일: NewLevel.cs 프로젝트: bradleat/trafps
 public NewLevel(Game1 game, EGGEditor eggEditor)
 {
     InitializeComponent();
     this.eggEditor = eggEditor;
     this.game = game;
 }