Exemple #1
0
 public ThemeService(ConfigService config)
 {
     this.config = config;
     theme       = new Theme();
 }
Exemple #2
0
 public SoundService(ConfigService config)
 {
     player = new SoundPlayer();
     player.LoadCompleted += Player_LoadCompleted;
     this.config           = config;
 }
Exemple #3
0
 public SoundService(ConfigService config)
 {
     players = new Dictionary <SoundType, SoundPlayer>();
     //player.LoadCompleted += Player_LoadCompleted;
     this.config = config;
 }
Exemple #4
0
 public SoundService(ConfigService config)
 {
     player      = new SoundPlayer();
     this.config = config;
 }