axiosengine/axios/Engine/Interfaces/IAxiosFile.cs
nathan@daedalus 7d3c8a9f39 + * - Adding properties in DrawableAxiosGameObject to turn on/off the following:
+ *   - AdjustUnits
+ *   - RelativeToCamera
+ * - Cleaning and sorting using statements
2012-03-24 18:06:51 -05:00

11 lines
185 B
C#

using System.IO;
namespace Axios.Engine.Interfaces
{
interface IAxiosFile
{
void WriteData(string data, FileMode mode);
string ReadData();
}
}