LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/TilePlacementResult.cs

16 lines
261 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
namespace DunGen
{
public enum TilePlacementResult
{
None = 0,
NoFromDoorway = 1,
NoTilesWithMatchingDoorway = 2,
NoValidTile = 3,
TemplateIsNull = 4,
NoMatchingDoorwayInTile = 5,
TileIsColliding = 6,
NewTileIsNull = 7,
OutOfBounds = 8
}
}