LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/TilePlacementResult.cs
2023-12-22 18:30:10 -05:00

15 lines
261 B
C#

namespace DunGen
{
public enum TilePlacementResult
{
None = 0,
NoFromDoorway = 1,
NoTilesWithMatchingDoorway = 2,
NoValidTile = 3,
TemplateIsNull = 4,
NoMatchingDoorwayInTile = 5,
TileIsColliding = 6,
NewTileIsNull = 7,
OutOfBounds = 8
}
}