Rune Serialize - Stabilization, Generation, major overhaul
[rune.git] / classes / gadgets / main.d
1 #
2 # GADGETS/MAIN.D - Root of the gfx library
3 #
4 # The gfx library is self contained and shareable.  We import whatever
5 # libraries we need here.
6 #
7 import selfcontained;
8 import "sys";
9 import <stdio>;
10 import <gfx>;
11
12 typedef gfx.Frame       Frame;
13 typedef gfx.Event       Event;
14 typedef gfx.Point       Point;
15 typedef gfx.Pen         Pen;
16 typedef gfx.Rect        Rect;
17
18 # The modules making up the gadgets library
19 #
20 public import "button.d";
21 public import "input.d";
22 public import "slider.d";