1
Programs / Raylib Wrapper Complete
« on: August 16, 2019, 03:49:05 pm »
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/Qb64Wrappers
Feedback is appericated.
EDIT: Added Example on forum post.
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/Qb64Wrappers
Feedback is appericated.
EDIT: Added Example on forum post.
Code: QB64: [Select]
- 'Raylib Basic Simple Window
- SetTargetFPS (60)
- Col.r = 0
- Col.g = 255
- Col.b = 0
- Col.a = 255
- BeginDrawing
- EndDrawing
- CloseWindow