diff options
Diffstat (limited to 'core/math')
-rw-r--r-- | core/math/math_2d.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/math/math_2d.h b/core/math/math_2d.h index 963b5efc43..6fea6c8adb 100644 --- a/core/math/math_2d.h +++ b/core/math/math_2d.h @@ -43,6 +43,14 @@ enum Margin { MARGIN_BOTTOM }; +enum Corner { + + CORNER_TOP_LEFT, + CORNER_TOP_RIGHT, + CORNER_BOTTOM_RIGHT, + CORNER_BOTTOM_LEFT +}; + enum Orientation { HORIZONTAL, |