diff options
| author | jussi | 2024-11-21 00:11:31 +0200 |
|---|---|---|
| committer | jussi | 2024-11-21 00:11:31 +0200 |
| commit | 4c0eb17a9c234bfee73af408faa38e38f2e450d9 (patch) | |
| tree | 4aea4fe804a63ed13a1d092aada0ba5925dcf05f /include/shapes.h | |
| parent | 479726a5e468a2f4d0f9337f082889082e535bfb (diff) | |
| download | reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.tar.gz reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.tar.bz2 reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.zip | |
New raylib 5.5 functions.
Diffstat (limited to 'include/shapes.h')
| -rw-r--r-- | include/shapes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/shapes.h b/include/shapes.h index b997f95..1e5c27a 100644 --- a/include/shapes.h +++ b/include/shapes.h @@ -2,6 +2,8 @@ /* Basic shapes drawing functions. */ int lshapesSetShapesTexture( lua_State* L ); +int lshapesGetShapesTexture( lua_State* L ); +int lshapesGetShapesTextureRectangle( lua_State* L ); int lshapesDrawPixel( lua_State* L ); int lshapesDrawLine( lua_State* L ); int lshapesDrawLineBezier( lua_State* L ); @@ -53,6 +55,7 @@ int lshapesGetSplinePointBezierCubic( lua_State* L ); int lshapesCheckCollisionRecs( lua_State* L ); int lshapesCheckCollisionCircles( lua_State* L ); int lshapesCheckCollisionCircleRec( lua_State* L ); +int lshapesCheckCollisionCircleLine( lua_State* L ); int lshapesCheckCollisionPointRec( lua_State* L ); int lshapesCheckCollisionPointCircle( lua_State* L ); int lshapesCheckCollisionPointTriangle( lua_State* L ); |
