瀏覽代碼

Texture example...

master
父節點
當前提交
c7a65a9210
共有 2 個文件被更改,包括 18 次插入0 次删除
  1. 二進制
      example/resource/texture.png
  2. +18
    -0
      example/texture.adb

二進制
example/resource/texture.png 查看文件

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

+ 18
- 0
example/texture.adb 查看文件

@@ -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…
取消
儲存