0fb31c3b0f
* - Adding CustomProperties field to Glee2D Layer object (this is because Layers can have custom properties) * - Passing Layer to Items in Glee2D library * - Adding public virtual bool LoadTextureItem(TextureItem textureitem) to AxiosGameScreen
22 lines
461 B
C#
22 lines
461 B
C#
using System.Collections.Generic;
|
|
using Axios.Engine.File;
|
|
|
|
namespace Axios.Engine.Data
|
|
{
|
|
class AxiosCSV
|
|
{
|
|
private AxiosFile _file;
|
|
public AxiosCSV(AxiosFile file)
|
|
{
|
|
_file = file;
|
|
}
|
|
|
|
public List<Dictionary<string, string>> GetData()
|
|
{
|
|
List<Dictionary<string, string>> ret = new List<Dictionary<string, string>>();
|
|
|
|
return ret;
|
|
}
|
|
}
|
|
}
|