diff options
| author | jussi | 2024-08-05 23:35:57 +0300 |
|---|---|---|
| committer | jussi | 2024-08-05 23:35:57 +0300 |
| commit | b011b2ca4e161fea2a742cb9b1673cd84cf0eba5 (patch) | |
| tree | e8a46e45013cc0c2ad27a9f045349ae790cd0a07 /src/lua_core.c | |
| parent | c6eb85b3674c36cfc426486d866a78dfc5452ae0 (diff) | |
| download | reilua-enhanced-b011b2ca4e161fea2a742cb9b1673cd84cf0eba5.tar.gz reilua-enhanced-b011b2ca4e161fea2a742cb9b1673cd84cf0eba5.tar.bz2 reilua-enhanced-b011b2ca4e161fea2a742cb9b1673cd84cf0eba5.zip | |
GetRayBoxCells fix.
Diffstat (limited to 'src/lua_core.c')
| -rw-r--r-- | src/lua_core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lua_core.c b/src/lua_core.c index 8071a0f..41796ef 100644 --- a/src/lua_core.c +++ b/src/lua_core.c @@ -755,6 +755,7 @@ static void defineGlobals() { assignGlobalColor( RAYWHITE, "RAYWHITE" ); // My own White (raylib logo) /* Math */ assignGlobalFloat( PI, "PI" ); // Pi + assignGlobalFloat( EPSILON, "EPSILON" ); // Epsilon assignGlobalFloat( DEG2RAD, "DEG2RAD" ); // Degrees to radians assignGlobalFloat( RAD2DEG, "RAD2DEG" ); // Radians to degrees /* Gui control state */ |
