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)