Explorar el Código

Texture example...

master
Ognjen Milan Robovic hace 3 semanas
padre
commit
c7a65a9210
Se han modificado 2 ficheros con 18 adiciones y 0 borrados
  1. BIN
      example/resource/texture.png
  2. +18
    -0
      example/texture.adb

BIN
example/resource/texture.png Ver fichero

Antes Después
Anchura: 420  |  Altura: 420  |  Tamaño: 212KB

+ 18
- 0
example/texture.adb Ver fichero

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

Cargando…
Cancelar
Guardar