Example #1
0
		public static string getNow( string lastPath )
		{
			wC.show = true;
			FrmSaveGame fsg = new FrmSaveGame( platformSpec.main.appPath + @"\Scenarios\", lastPath );
			wC.show = false;

			fsg.ShowDialog();
			return fsg.result;
		}
Example #2
0
		public static string getNow( string directory, string lastPath )
		{
			wC.show = true;
			FrmSaveGame fsg = new FrmSaveGame( Form1.options.savesDirectoryFullPath, lastPath );
			wC.show = false;

			fsg.ShowDialog();
			return fsg.result;
		}
Example #3
0
        public static string getNow(string lastPath)
        {
            wC.show = true;
            FrmSaveGame fsg = new FrmSaveGame(platformSpec.main.appPath + @"\Scenarios\", lastPath);

            wC.show = false;

            fsg.ShowDialog();
            return(fsg.result);
        }
Example #4
0
        public static string getNow(string directory, string lastPath)
        {
            wC.show = true;
            FrmSaveGame fsg = new FrmSaveGame(Form1.options.savesDirectoryFullPath, lastPath);

            wC.show = false;

            fsg.ShowDialog();
            return(fsg.result);
        }