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 b9c1b2c8c2 Gesture functions... 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 Initial bindings and window example... il y a 2 mois
raylib.ads Gesture functions... il y a 1 mois
texture.png More function bindings, debugging stuff... il y a 2 mois
window.adb Shape functions and few utility functions... 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;