diff options
| author | jussi | 2023-11-09 22:02:59 +0200 |
|---|---|---|
| committer | jussi | 2023-11-09 22:02:59 +0200 |
| commit | 8effd050ffb736df2124da00227d8b2843d298f6 (patch) | |
| tree | 47e3970fd315384a86e467b27edccc7bd75bb4bd /include/shapes.h | |
| parent | e056446750bff6db15842aea662f18a322052d8c (diff) | |
| download | reilua-enhanced-8effd050ffb736df2124da00227d8b2843d298f6.tar.gz reilua-enhanced-8effd050ffb736df2124da00227d8b2843d298f6.tar.bz2 reilua-enhanced-8effd050ffb736df2124da00227d8b2843d298f6.zip | |
Organized shapes, textures, audio, text, lights and gui functions.
Diffstat (limited to 'include/shapes.h')
| -rw-r--r-- | include/shapes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/shapes.h b/include/shapes.h index 6618524..3fde097 100644 --- a/include/shapes.h +++ b/include/shapes.h @@ -1,6 +1,6 @@ #pragma once -/* Drawing. */ +/* Basic shapes drawing functions. */ int lshapesSetShapesTexture( lua_State *L ); int lshapesDrawPixel( lua_State *L ); int lshapesDrawLine( lua_State *L ); @@ -33,7 +33,7 @@ int lshapesDrawTriangleStrip( lua_State *L ); int lshapesDrawPoly( lua_State *L ); int lshapesDrawPolyLines( lua_State *L ); int lshapesDrawPolyLinesEx( lua_State *L ); -/* Collision. */ +/* Basic shapes collision detection functions. */ int lshapesCheckCollisionRecs( lua_State *L ); int lshapesCheckCollisionCircles( lua_State *L ); int lshapesCheckCollisionCircleRec( lua_State *L ); |
