Hello all,
I have recently finished another wrapper for QB64. This time the source is included. It is a wrapper for Raylib. Raylib is a library for video game programming.
Raylib Wrapper:
https://github.com/gAndy50/Qb64WrappersFeedback is appericated.
EDIT: Added Example on forum post.
'Raylib Basic Simple Window
CALL InitWindow
(w
, h
, "Simple")
SetTargetFPS (60)
Col.r = 0
Col.g = 255
Col.b = 0
Col.a = 255
BeginDrawing
CALL ClearBackground
(_RGBA32(Col.r
, Col.g
, Col.b
, Col.a
))
CALL DrawText
("Hello World" + CHR$(0), 10, 30, 20, _RGBA32(255, 0, 0, 255))
IF IsKeyPressed
(KEY_LEFT
) THEN
EndDrawing
CloseWindow