Skip to content

Shoozza/raylib-freebasic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

raylib-freebasic -> v4.0

FreeBasic bindings for raylib

Lib Linux Windows Mac BSD
raylib.bi works works should works should works
raymath.bi works works should works should works
rlgl.bi works works should works should works

example

#include "raylib.bi"

Dim As Const Integer screen_width = 800
Dim As Const Integer screen_height = 450

InitWindow(screen_width, screen_height, "Hello World")
SetTargetFPS(60)

While Not WindowShouldClose()
	BeginDrawing()
		ClearBackground(RAYWHITE)
		DrawText("Hello World from raylib and FreeBasic!", 200, 200, 20, GRAY)
	EndDrawing()
Wend

CloseWindow()

Example

game using raylib-freebasic

About

FreeBasic bindings for raylib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • FreeBASIC 100.0%