Пример #1
0
 public static JeopardyGame GetInstance(string path)
 {
     if (instance == null)
     {
         instance = new JeopardyGame(path);
     }
     return(instance);
 }
Пример #2
0
 public static JeopardyGame GetInstance(string path)
 {
     if (instance == null)
     {
         instance = new JeopardyGame(path);
     }
     return instance;
 }
Пример #3
0
 private void constr(string jgPath, string player0Name, string player1Name, string player2Name)
 {
     InitializeComponent();
     game = JeopardyGame.GetInstance(jgPath);
     this.updateCategories();
     _players    = new Player[3];
     _players[0] = new Player(player0Name, Color.Red);
     _players[1] = new Player(player1Name, Color.Lime);
     _players[2] = new Player(player2Name, Color.DeepSkyBlue);
     this.updatePlayerNames();
     this.resetScore();
     iterateButtons();
     _defaultButtonColor = cat1_100.BackColor;
 }
Пример #4
0
 private void constr(string jgPath, string player0Name, string player1Name, string player2Name)
 {
     InitializeComponent();
     game = JeopardyGame.GetInstance(jgPath);
     this.updateCategories();
     _players = new Player[3];
     _players[0] = new Player(player0Name, Color.Red);
     _players[1] = new Player(player1Name, Color.Lime);
     _players[2] = new Player(player2Name, Color.DeepSkyBlue);
     this.updatePlayerNames();
     this.resetScore();
     iterateButtons();
     _defaultButtonColor = cat1_100.BackColor;
 }