From a8bfa1b38e8d1226e60fa36c087cf7adabab25a3 Mon Sep 17 00:00:00 2001 From: Scionwest_cp Date: Sat, 7 Nov 2009 11:15:35 -0800 Subject: [PATCH] Added better commenting to FileSystem.cs --- MUDEngine/FileSystem/FileSystem.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/MUDEngine/FileSystem/FileSystem.cs b/MUDEngine/FileSystem/FileSystem.cs index de67329..762dbb6 100644 --- a/MUDEngine/FileSystem/FileSystem.cs +++ b/MUDEngine/FileSystem/FileSystem.cs @@ -21,6 +21,11 @@ namespace MUDEngine.FileSystem set; } + /// + /// Saves the object using the specified output format + /// + /// + /// public static void Save(string Filename, object o) { if (FileType == OutputFormats.XML) @@ -29,6 +34,12 @@ namespace MUDEngine.FileSystem } } + /// + /// Loads the object using the specified FileType format + /// + /// + /// + /// public static object Load(string Filename, object o) { if (FileType == OutputFormats.XML)