Ada bindings for Raylib 5.1 library.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ognjen Milan Robovic fba5a57989 Window example and texture... il y a 1 mois
example Window example and texture... il y a 1 mois
.gitignore Initial bindings and window example... il y a 2 mois
LICENSE Initial commit il y a 2 mois
README.md Initial bindings and window example... il y a 2 mois
compile.sh File reordering, installation script, more... il y a 1 mois
install.sh File reordering, installation script, more... il y a 1 mois
raylib.ads Minor changes yet again... il y a 1 mois

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;