enum TerrainDirection { TopLeft = "top-left", Top = "top", TopRight = "top-right", Left = "left", Center = "center", Right = "right", BottomLeft = "bottom-left", Bottom = "bottom", BottomRight = "bottom-right", FillFull = "fill-full", FillTopLeftRight = "fill-top-left-right", FillTopLeftBottom = "fill-top-left-bottom", FillTopLeft = "fill-top-left", FillTopRightBottom = "fill-top-right-bottom", FillTopRight = "fill-top-right", FillTopBottom = "fill-top-bottom", FillLeftRight = "fill-left-right", FillBottomLeft = "fill-bottom-left", FillBottomRight = "fill-bottom-right", } export default TerrainDirection;