namespace MonoGame.Extended.Tilemaps
{
///
/// Specifies the rendering order for objects in an object layer.
///
public enum TilemapObjectDrawOrder
{
///
/// Objects are drawn based on their Y position (top to bottom).
///
TopDown,
///
/// Objects are drawn in the order they appear in the layer.
///
Index
}
}