add convenience overload

This commit is contained in:
Gered 2013-09-08 11:06:16 -04:00
parent ec9a4d6fad
commit 1dfebf08ee

View file

@ -51,6 +51,11 @@ namespace Blarg.GameFramework.TileMap
return true; return true;
} }
public void GetBoundingBoxFor(Point3 point, ref BoundingBox result)
{
GetBoundingBoxFor(point.X, point.Y, point.Z, ref result);
}
public void GetBoundingBoxFor(int x, int y, int z, ref BoundingBox result) public void GetBoundingBoxFor(int x, int y, int z, ref BoundingBox result)
{ {
// local "TileContainer space" // local "TileContainer space"