aboutsummaryrefslogtreecommitdiff
path: root/example/texture.adb
diff options
context:
space:
mode:
authorxolatile2024-04-23 11:44:25 -0400
committerxolatile2024-04-23 11:44:25 -0400
commit2eafb4d3234dde2e53a099820475fc9ca8e481d4 (patch)
tree1448d9db115129cf436e33a13a5328dda417036b /example/texture.adb
parentb8bcd7014fa1b543e5cf86f0f685efc198d43a75 (diff)
downloadxolatile-raylib-ada-2eafb4d3234dde2e53a099820475fc9ca8e481d4.tar.xz
xolatile-raylib-ada-2eafb4d3234dde2e53a099820475fc9ca8e481d4.tar.zst
Preview example and font...
Diffstat (limited to 'example/texture.adb')
-rw-r--r--example/texture.adb18
1 files changed, 0 insertions, 18 deletions
diff --git a/example/texture.adb b/example/texture.adb
deleted file mode 100644
index c4fa5e2..0000000
--- a/example/texture.adb
+++ /dev/null
@@ -1,18 +0,0 @@
-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;