Sfoglia il codice sorgente

Texture example...

master
parent
commit
c7a65a9210
2 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. BIN
      example/resource/texture.png
  2. +18
    -0
      example/texture.adb

BIN
example/resource/texture.png Vedi File

Before After
Width: 420  |  Height: 420  |  Size: 212KB

+ 18
- 0
example/texture.adb Vedi 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…
Annulla
Salva