Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 493 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 493 Bytes

raylib-fb v3.0

FreeBasic bindings for raylib.

Example

#include "raylib.bi"

const screenWidth = 800
const screenHeight = 450
InitWindow(screenWidth, screenHeight, "Hello World")
SetTargetFPS(60)
while not WindowShouldClose()
	BeginDrawing()
		ClearBackground(RAYWHITE)
		DrawText("Hello World from raylib and FB!", 230, 200, 20, GRAY)
	EndDrawing()
wend
CloseWindow()

Bild