diff options
Diffstat (limited to 'graphics.ads')
| -rw-r--r-- | graphics.ads | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics.ads b/graphics.ads index 1f58de3..601c3e9 100644 --- a/graphics.ads +++ b/graphics.ads @@ -1,4 +1,5 @@ with SDL; +with SDL.Timers; with SDL.Video.Windows; with SDL.Video.Renderers; with SDL.Video.Palettes; @@ -14,6 +15,8 @@ package Graphics is WINDOW_WIDTH: constant SDL.Positive_Dimension := 400; WINDOW_HEIGHT: constant SDL.Positive_Dimension := 400; + TIME_STEP: constant SDL.Timers.Milliseconds := 400; + COLOR_WHITE: constant SDL.Video.Palettes.Colour := (255, 255, 255, 255); COLOR_BLACK: constant SDL.Video.Palettes.Colour := (0, 0, 0, 255); COLOR_RED: constant SDL.Video.Palettes.Colour := (255, 0, 0, 255); |
