diff options
Diffstat (limited to 'game.adb')
-rw-r--r-- | game.adb | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,4 @@ +with Ada.Text_IO; with Text_IO; use Text_IO; with Interfaces.C; use Interfaces.C; with Raylib; use Raylib; @@ -55,6 +56,8 @@ procedure Game is Palette_RGB: array (Palette) of Color := [others => (A => 255, others => 0)]; Palette_HSV: array (Palette) of HSV := [others => [others => 0]]; + package Double_IO is new Ada.Text_IO.Float_IO(Double); + procedure Save_Colors(File_Name: String) is F: File_Type; begin |