Beispiel #1
0
		/// <summary>
		/// Close an existing project
		/// </summary>
		/// <param name="save">Should we save the project data before closing?</param>
		/// <param name="proj">Project object in question</param>
		private static void Close(bool save, BlamLib.CheApe.Project proj)
		{
			if (save) Save(null, proj);
			proj.Dispose();
		}