Texture example...
This commit is contained in:
parent
bcd06cfd60
commit
c7a65a9210
Binary file not shown.
Before Width: | Height: | Size: 212 KiB |
18
example/texture.adb
Normal file
18
example/texture.adb
Normal 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;
|
Loading…
Reference in New Issue
Block a user