aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorxolatile2024-04-23 11:35:35 -0400
committerxolatile2024-04-23 11:35:35 -0400
commitc7a65a921039a7ccdde5f6815d91da6bcc423b58 (patch)
tree313fab95459df701b47af156d1986c4b4cdc486b /example
parentbcd06cfd60cd399c4eab5d2df82889dbf4062918 (diff)
downloadxolatile-raylib-ada-c7a65a921039a7ccdde5f6815d91da6bcc423b58.tar.xz
xolatile-raylib-ada-c7a65a921039a7ccdde5f6815d91da6bcc423b58.tar.zst
Texture example...
Diffstat (limited to 'example')
-rw-r--r--example/resource/texture.pngbin216896 -> 0 bytes
-rw-r--r--example/texture.adb18
2 files changed, 18 insertions, 0 deletions
diff --git a/example/resource/texture.png b/example/resource/texture.png
deleted file mode 100644
index e9b69e9..0000000
--- a/example/resource/texture.png
+++ /dev/null
Binary files differ
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;