1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* <license>
* This file is part of the dis-Emi-A HaXe Library. Copyright © edA-qa mort-ora-y
* For full copyright and license information please refer to doc/license.txt.
* </license>
*/
/**
* A file to do quick typedefs of commonly used draw types
*/
typedef Brush = draw.Brush;
typedef MultiBrush = draw.MultiBrush;
typedef Pen = draw.Pen;
typedef Color = draw.Color;
typedef GraphicsX = draw.GraphicsX;
typedef Framer = draw.Framer;
typedef Shape = draw.fragments.Shape;
//import Point2 as well since it is widely used for drawing
typedef Point2 = mathx.Point2;
typedef Rect2 = mathx.Rect2;
|