Ada bindings for Raylib 5.1 library.
Go to file
2024-03-24 07:03:36 -04:00
.gitignore Initial bindings and window example... 2024-03-18 08:06:11 -04:00
compile.sh Initial bindings and window example... 2024-03-18 08:06:11 -04:00
LICENSE Initial commit 2024-03-18 08:03:18 -04:00
raylib.ads Music functions... 2024-03-24 07:03:36 -04:00
README.md Initial bindings and window example... 2024-03-18 08:06:11 -04:00
texture.png More function bindings, debugging stuff... 2024-03-18 10:10:41 -04:00
window.adb Added 6 more functions... 2024-03-18 15:28:32 -04:00

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;