Ada bindings for Raylib 5.1 library.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Ognjen Milan Robovic d9327c57f2 Automation event functions... hace 1 mes
.gitignore Initial bindings and window example... hace 2 meses
LICENSE Initial commit hace 2 meses
README.md Initial bindings and window example... hace 2 meses
compile.sh Initial bindings and window example... hace 2 meses
raylib.ads Automation event functions... hace 1 mes
texture.png More function bindings, debugging stuff... hace 2 meses
window.adb Shape functions and few utility functions... hace 1 mes

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;