Exemplo n.º 1
0
 /// <summary>
 /// Load the data of the Application and setup the objects
 /// </summary>
 public void Start()
 {
     scoreTable = ScoreTable.Instance();
     screen     = ScreenManager.Instance();
     screen.Start(scoreTable);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Starts the application receiving the score table this class will work with
 /// </summary>
 /// <param name="scoreTable">The score table this class will work with</param>
 public void Start(ScoreTable scoreTable)
 {
     isRunning       = true;
     curScreen       = Screens.WELCOME_SCREEN;
     this.scoreTable = scoreTable;
 }