diff options
author | George Marques <george@gmarqu.es> | 2021-02-23 13:56:28 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-02-23 13:56:28 -0300 |
commit | f1088e1b70962799c2e0f7de8f8b0dcf850569a8 (patch) | |
tree | f3d538a815f018d2a15a836e145d32d5c93ff328 /core/core_constants.cpp | |
parent | 50d71e7f2a889afd3cbf5673582b7f98d8037bac (diff) |
Bind ClockDirection enum
It's the only enum in math_defs.h not bound, and it's used by Plane.
Diffstat (limited to 'core/core_constants.cpp')
-rw-r--r-- | core/core_constants.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/core_constants.cpp b/core/core_constants.cpp index ef5dbf17bb..f9edff1899 100644 --- a/core/core_constants.cpp +++ b/core/core_constants.cpp @@ -125,6 +125,9 @@ void register_global_constants() { BIND_CORE_ENUM_CONSTANT(VERTICAL); BIND_CORE_ENUM_CONSTANT(HORIZONTAL); + BIND_CORE_ENUM_CONSTANT(CLOCKWISE); + BIND_CORE_ENUM_CONSTANT(COUNTERCLOCKWISE); + BIND_CORE_ENUM_CONSTANT(HALIGN_LEFT); BIND_CORE_ENUM_CONSTANT(HALIGN_CENTER); BIND_CORE_ENUM_CONSTANT(HALIGN_RIGHT); |