+ * - Changing AxiosTitleFile.GetStream() to return Stream instead of FileStream

+ * - Changing IAxiosFile.GetStream() to return Stream instead of FileStream
This commit is contained in:
Nathan Adams
2012-05-21 21:53:14 -05:00
parent e75e8fdca1
commit 5de23be1fe
7 changed files with 11 additions and 10 deletions

View File

@@ -74,7 +74,7 @@ namespace Axios.Engine.Gleed2D
return level;
}
public static Level FromStream(FileStream stream, AxiosGameScreen gameScreen)
public static Level FromStream(Stream stream, AxiosGameScreen gameScreen)
{
Dictionary<string, Texture2D> cache = new Dictionary<string, Texture2D>();
XmlSerializer serializer = new XmlSerializer(typeof(Level));