static void Main(string[] args)
 {
     using (var game = new FrontierPlanetGame())
     {
         game.Run();
     }
 }
        // Assuming 32x32, this gives us 720p (1280x720) - well, 736, to be exact tiles
        public FrontierPlanetGame() : base(1280, 736)
        {
            FrontierPlanetGame.LatestInstance = this;
            this.BindCustomKeyboardActions();

            // this.showCollisionAreas = true;
        }