From 7cef684e71b64f00b41da66ba7bc581568d78f51 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 6 Aug 2017 22:17:54 +1000 Subject: Factored out some trivial bits into Misc, made coding style more consistent --- src/displays.ads | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/displays.ads') diff --git a/src/displays.ads b/src/displays.ads index c52a058..89e4542 100644 --- a/src/displays.ads +++ b/src/displays.ads @@ -7,7 +7,9 @@ with private with - FLTK.Widgets.Boxes; + FLTK.Widgets.Boxes, + FLTK.Images.RGB.PNG, + Misc; package Displays is @@ -106,6 +108,10 @@ private end record; + Logo : FLTK.Images.RGB.PNG.PNG_Image := + FLTK.Images.RGB.PNG.Create (Misc.Origin & "/../share/sokoban/img/man.png"); + + Text_Size : constant FLTK.Font_Size := 12; Message_Box_Width : constant Integer := 440; Message_Box_Height : constant Integer := 80; -- cgit