From f6c9801635739e0773ac7337d6c8d2cee1c24cd6 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 11 Oct 2024 22:48:52 +0200 Subject: [PATCH] Add constants for orientations --- gfx/prop/orientation.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gfx/prop/orientation.lua b/gfx/prop/orientation.lua index 5d9ffec..8cb4541 100644 --- a/gfx/prop/orientation.lua +++ b/gfx/prop/orientation.lua @@ -22,4 +22,7 @@ function Orientation:with(elementType) return elementType end +Orientation.VERTICAL = true +Orientation.HORIZONTAL = false + return Orientation \ No newline at end of file