Inheritance: Microsoft.Xna.Framework.Game
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
        public Level(ContentManager content, Game1 game)
        {
            this.content = content;
            this.game = game;

            hero = new Hero(content, this);
            shia = new Shia(content, this);
            jojo = new Jotaro(content, this);
        }