Exemplo n.º 1
0
 public Spielfeld(ITetrisMain mainApp, IStatistik stats)
 {
     this.mainApp      = mainApp;
     this.stats        = stats;
     this.levelManager = new LevelManager(this);
     this.State        = GameStates.New;
 }
Exemplo n.º 2
0
 public Spielfeld(IPaint gui, IStatistik stats)
 {
     this.gui   = gui;
     this.stats = stats;
 }