示例#1
0
 public GameState(List<Theme> themes, List<Player> players, Song sharedSong, Song finalSong )
 {
     myThemes = themes;
     myPlayers = players;
     mySharedSong = sharedSong;
     myFinalSong = finalSong;
 }
示例#2
0
 public SongTest(GameApplication app, Player player, Song song)
 {
     myApp = app;
     myPlayer = player;
     mySong = song;
 }
示例#3
0
 public BlindTest(GameApplication app, Player player, Song song)
     : base(app, player, song)
 {
     player.DidBlindTest = true;
 }