/// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Engine engine = new Engine())
     {
         engine.Run();
     }
 }
        protected override void Initialize()
        {
            Engine.ContentManager = this.Content;
            Engine.Graphics = this.graphics;
            Engine.Project = this;
            Engine.DialogRunner = new DialogRunner();

            base.Initialize();
        }