public HeroesOfRockGame()
 {
     HORGame = this;
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     #if !EDITOR
     IsMouseVisible = false;
     #endif
     //#if XBOX360
     //            this.Components.Add(new GamerServicesComponent(this));
     //#endif
     #if TRIAL_MODE
     Guide.SimulateTrialMode = true;
     #endif
 }
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (HeroesOfRockGame game = new HeroesOfRockGame())
     {
         game.Run();
     }
 }