Ada bindings for Raylib 5.1 library.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Ognjen Milan Robovic 57c18667f5 Irrelevant... 1 ay önce
.gitignore Initial bindings and window example... 2 ay önce
LICENSE Initial commit 2 ay önce
README.md Initial bindings and window example... 2 ay önce
compile.sh Initial bindings and window example... 2 ay önce
raylib.ads Irrelevant... 1 ay önce
texture.png More function bindings, debugging stuff... 2 ay önce
window.adb Shape functions and few utility functions... 1 ay önce

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;