Adding support for ability to

override functionality of automated Gleed2D level loading
        by adding functions to AxiosGameScreen to override

--HG--
branch : customgleed2dhandling
This commit is contained in:
Nathan Adams
2012-05-18 21:15:51 -05:00
parent c0d3f3b939
commit 3c0c5a4ded
7 changed files with 45 additions and 25 deletions

View File

@@ -394,6 +394,21 @@ namespace Axios.Engine
//CleanUp();
}
public virtual bool LoadCircleItem(CircleItem circleitem)
{
return true;
}
public virtual bool LoadRectangleItem(RectangleItem rectangleitem)
{
return true;
}
public virtual bool LoadPathItem(PathItem pathitem)
{
return true;
}
#if WINDOWS
// System.Drawing is NOT avaiable on WP7 or Xbox
/*