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... 1 month ago
example Explaining examples and utter install script cancer... 1 month ago
.gitignore Initial bindings and window example... 2 months ago
LICENSE Initial commit 2 months ago
README.md Initial bindings and window example... 2 months ago
compile.sh File reordering, installation script, more... 1 month ago
install.sh Explaining examples and utter install script cancer... 1 month ago
raylib.ads Explaining examples and utter install script cancer... 1 month ago

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;