Parcourir la source

README and window,,,

master
Ognjen Milan Robovic il y a 3 semaines
Parent
révision
9b449a07b7
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. +1
    -0
      README.md
  2. +2
    -2
      example/window.adb

+ 1
- 0
README.md Voir le fichier

@@ -12,6 +12,7 @@ Important note for users:
- Sorry...
- There are examples, you can compile and run them, this is all still being tested...
- First of all, run 'sudo sh install.sh', then 'sh compile.sh' and see the results with 'ls' command. Thanks.
- All files in './example/resource/' folder are under CC0 license, downloaded from opengameart.org.

Compile:
```bash


+ 2
- 2
example/window.adb Voir le fichier

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


Chargement…
Annuler
Enregistrer