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 cffe810f43 Explaining examples and utter install script cancer... 3 weken geleden
example Explaining examples and utter install script cancer... 3 weken geleden
.gitignore Initial bindings and window example... 2 maanden geleden
LICENSE Initial commit 2 maanden geleden
README.md Initial bindings and window example... 2 maanden geleden
compile.sh File reordering, installation script, more... 3 weken geleden
install.sh Explaining examples and utter install script cancer... 3 weken geleden
raylib.ads Explaining examples and utter install script cancer... 3 weken geleden

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;