Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapObjectType.cs
T
Lucas Girouard-StranksandDylan Wilson 9e359fb750 Tiled Rework (#331)
* Tiled Rework

* fix failing tests

* really fix failing tests
2017-01-18 20:46:38 +10:00

11 lines
175 B
C#

namespace MonoGame.Extended.Tiled
{
public enum TiledMapObjectType : byte
{
Rectangle,
Ellipse,
Polygon,
Polyline,
Tile
}
}