NHSE/NHSE.Core/Structures/Map/Terrain/PlacedItemPermission.cs
Kurt 084542d367 xmldoc
tried to split off some grid stuff because rooms don't need to know about acres; whatever
2020-05-23 13:08:14 -07:00

24 lines
566 B
C#

namespace NHSE.Core
{
/// <summary>
/// Flagging various issues when trying to place an item.
/// </summary>
public enum PlacedItemPermission
{
/// <summary>
/// Item does not have any of its tiles overlapping with any other items.
/// </summary>
NoCollision,
/// <summary>
/// Item tiles are overlapping with another item.
/// </summary>
Collision,
/// <summary>
/// Item tiles would overflow out-of-bounds.
/// </summary>
OutOfBounds,
}
}