7d3c8a9f39
+ * - AdjustUnits + * - RelativeToCamera + * - Cleaning and sorting using statements
11 lines
185 B
C#
11 lines
185 B
C#
using System.IO;
|
|
|
|
namespace Axios.Engine.Interfaces
|
|
{
|
|
interface IAxiosFile
|
|
{
|
|
void WriteData(string data, FileMode mode);
|
|
string ReadData();
|
|
}
|
|
}
|