axiosengine/axios/Engine/Data/AxiosCSV.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

15 lines
226 B
C#

using Axios.Engine.File;
namespace Axios.Engine.Data
{
class AxiosCSV
{
private AxiosFile _file;
public AxiosCSV(AxiosFile file)
{
_file = file;
}
}
}