/// <summary>Saves the file.</summary> public void Save() { if (string.IsNullOrEmpty(path)) { SaveAs(); } else { BlockManager.WriteFile(path, BlockList.Blocks); Edited = false; } }