Ada bindings for Raylib 5.1 library.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Ognjen Milan Robovic 6a3ff8d264 Image exporting functions... 1ヶ月前
.gitignore Initial bindings and window example... 2ヶ月前
LICENSE Initial commit 2ヶ月前
README.md Initial bindings and window example... 2ヶ月前
compile.sh Initial bindings and window example... 2ヶ月前
raylib.ads Image exporting functions... 1ヶ月前
texture.png More function bindings, debugging stuff... 2ヶ月前
window.adb Shape functions and few utility functions... 1ヶ月前

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;