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 495639f8b3 Small changes... il y a 2 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 Initial bindings and window example... il y a 2 mois
raylib.ads Small changes... il y a 2 mois
texture.png More function bindings, debugging stuff... il y a 2 mois
window.adb Added 6 more functions... il y a 2 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;