From c7a65a921039a7ccdde5f6815d91da6bcc423b58 Mon Sep 17 00:00:00 2001 From: xolatile Date: Tue, 23 Apr 2024 11:35:35 -0400 Subject: Texture example... --- example/texture.adb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 example/texture.adb (limited to 'example/texture.adb') diff --git a/example/texture.adb b/example/texture.adb new file mode 100644 index 0000000..c4fa5e2 --- /dev/null +++ b/example/texture.adb @@ -0,0 +1,18 @@ +with Raylib; +use Raylib; + +procedure Window is + +begin + Open_Window (1280, 720, "Pandemos Empire" & ASCII.NUL); + -- + Main_Loop: loop + exit when Window_Should_Close; + -- + Begin_Drawing; + Clear_Background; + End_Drawing; + end loop Main_Loop; + -- + Close_Window; +end Window; -- cgit v1.2.3