Ada bindings for Raylib 5.1 library.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ognjen Milan Robovic ae7be287d6 Removed callback functions and types... 1 kuukausi sitten
.gitignore Initial bindings and window example... 2 kuukautta sitten
LICENSE Initial commit 2 kuukautta sitten
README.md Initial bindings and window example... 2 kuukautta sitten
compile.sh Initial bindings and window example... 2 kuukautta sitten
raylib.ads Removed callback functions and types... 1 kuukausi sitten
texture.png More function bindings, debugging stuff... 2 kuukautta sitten
window.adb Shape functions and few utility functions... 1 kuukausi sitten

README.md

raylib-ada

Ada bindings for Raylib 5.1 library.

with Raylib;
use  Raylib;

procedure Window is
begin
	Open_Window (720, 360, "Heyo Raylib!" & Character'Val (0));
	--
	Main_Loop: loop
		exit when Window_Should_Close;
		--
		Begin_Drawing;
		Clear_Background (Blue);
		End_Drawing;
	end loop Main_Loop;
	--
	Close_Window;
end Window;