Texture example...

This commit is contained in:
Ognjen Milan Robovic 2024-04-23 11:35:35 -04:00
parent bcd06cfd60
commit c7a65a9210
2 changed files with 18 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 KiB

18
example/texture.adb Normal file
View File

@ -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;