Bind ClockDirection enum

It's the only enum in math_defs.h not bound, and it's used by Plane.
This commit is contained in:
George Marques
2021-02-23 13:56:28 -03:00
parent 50d71e7f2a
commit f1088e1b70
2 changed files with 4 additions and 0 deletions

View File

@@ -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);