* - Starting work on AxiosCSV

* - 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
This commit is contained in:
Nathan Adams
2012-07-20 22:11:10 -05:00
parent c0ef5e2a94
commit 0fb31c3b0f
11 changed files with 49 additions and 23 deletions

View File

@@ -1,4 +1,4 @@

using System.Collections.Generic;
using Axios.Engine.File;
namespace Axios.Engine.Data
@@ -10,5 +10,12 @@ namespace Axios.Engine.Data
{
_file = file;
}
public List<Dictionary<string, string>> GetData()
{
List<Dictionary<string, string>> ret = new List<Dictionary<string, string>>();
return ret;
}
}
}