aboutsummaryrefslogtreecommitdiff
path: root/example/texture.adb
diff options
context:
space:
mode:
Diffstat (limited to 'example/texture.adb')
-rw-r--r--example/texture.adb18
1 files changed, 18 insertions, 0 deletions
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;