aboutsummaryrefslogtreecommitdiff
path: root/window.adb
diff options
context:
space:
mode:
authorxolatile2024-03-18 15:28:32 -0400
committerxolatile2024-03-18 15:28:32 -0400
commit5bb0d020cec849ab4709087e4590ede2a0514e6e (patch)
tree6a4961371f6d1c588d85427ae8d4ac738b3f7fc4 /window.adb
parent607f7d0e32e34a2f01feba578b6751d1754704a9 (diff)
downloadxolatile-raylib-ada-5bb0d020cec849ab4709087e4590ede2a0514e6e.tar.xz
xolatile-raylib-ada-5bb0d020cec849ab4709087e4590ede2a0514e6e.tar.zst
Added 6 more functions...
Diffstat (limited to 'window.adb')
-rw-r--r--window.adb3
1 files changed, 1 insertions, 2 deletions
diff --git a/window.adb b/window.adb
index 55035f4..f6b8086 100644
--- a/window.adb
+++ b/window.adb
@@ -25,10 +25,9 @@ begin
Begin_Drawing;
--
Clear_Background (Sky_Blue);
- --
Draw_Texture (Dragdown, 100, 100, White);
Draw_Text_Pro (Get_Font_Default, Text, (90.0, 90.0), (9.0, 9.0), 0.0, 32.0, 4.0, Red);
- Draw_FPS (60, 60);
+ Draw_FPS (X, Y);
Draw_Line (0, 0, 300, 300, Black);
Draw_Rectangle (120, 120, 30, 60, Blue);
--