diff options
| author | xolatile | 2024-04-23 12:37:29 -0400 |
|---|---|---|
| committer | xolatile | 2024-04-23 12:37:29 -0400 |
| commit | 9b449a07b780c7a86fa52c708496b0cf8d37499c (patch) | |
| tree | ec0205d3485604513593b70655a9493270b152ef /example | |
| parent | 2908bb46c648283a6a3ca7e164c2f1c4cd624ecc (diff) | |
| download | xolatile-raylib-ada-9b449a07b780c7a86fa52c708496b0cf8d37499c.tar.xz xolatile-raylib-ada-9b449a07b780c7a86fa52c708496b0cf8d37499c.tar.zst | |
README and window,,,
Diffstat (limited to 'example')
| -rw-r--r-- | example/window.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/window.adb b/example/window.adb index 2c0abdf..cf42814 100644 --- a/example/window.adb +++ b/example/window.adb @@ -40,7 +40,7 @@ begin Begin_Drawing; Clear_Background (Ray_White); -- You can specify all arguments, or use defaults after one point. - Draw_Text ("Heyo from Ada." & ASCII.NUL, 4, 4, 32, Black); + Draw_Text ("Heyo from Ada." & ASCII.NUL, 4, 4); -- You can explicitly state all arguments and their values. Draw_Text ( Text => To_C_String ("Press Escape key to exit program."), @@ -51,7 +51,7 @@ begin ); -- Or at last, you can specify which arguments won't be defaults. Draw_Text ( - Text => To_C_String ("You can ignore some arguments."), + Text => To_C_String ("Deus Vult."), X => 4, Y => 68 ); |
