This commit is contained in:
Krzosa Karol
2023-04-14 21:13:38 +02:00
parent 542f2e0297
commit fdcdc8ea86
4 changed files with 14 additions and 4 deletions

View File

@@ -14,10 +14,13 @@ ClearBackground :: #foreign (color: Color)
DrawCircle :: #foreign (centerX: int, centerY: int, radius: F32, color: Color)
DrawCircleV :: #foreign (center: Vector2, radius: F32, color: Color)
DrawCube :: #foreign (position: Vector3, width: F32, height: F32, length: F32, color: Color)
DrawFPS :: #foreign (posX: int, posY: int)
DrawText :: #foreign (text: *char, posX: int, posY: int, fontSize: int, color: Color)
GetScreenWidth :: #foreign (): int
GetScreenHeight :: #foreign (): int
IsKeyDown :: #foreign (key: int): Bool
IsKeyPressed :: #foreign (key: int): Bool