1 /*
2  * DSFML - The Simple and Fast Multimedia Library for D
3  *
4  * Copyright (c) 2013 - 2017 Jeremy DeHaan (dehaan.jeremiah@gmail.com)
5  *
6  * This software is provided 'as-is', without any express or implied warranty.
7  * In no event will the authors be held liable for any damages arising from the
8  * use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not claim
15  * that you wrote the original software. If you use this software in a product,
16  * an acknowledgment in the product documentation would be appreciated but is
17  * not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  * misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source distribution
23  */
24 
25 /// 2D graphics module: sprites, text, shapes, etc.
26 module dsfml.graphics;
27 
28 public
29 {
30     import dsfml.window;
31 
32     import dsfml.graphics.blendmode;
33     import dsfml.graphics.circleshape;
34     import dsfml.graphics.color;
35     import dsfml.graphics.convexshape;
36     import dsfml.graphics.drawable;
37     import dsfml.graphics.font;
38     import dsfml.graphics.glyph;
39     import dsfml.graphics.image;
40     import dsfml.graphics.primitivetype;
41     import dsfml.graphics.rect;
42     import dsfml.graphics.rectangleshape;
43     import dsfml.graphics.renderstates;
44     import dsfml.graphics.rendertarget;
45     import dsfml.graphics.rendertexture;
46     import dsfml.graphics.renderwindow;
47     import dsfml.graphics.shader;
48     import dsfml.graphics.shape;
49     import dsfml.graphics.sprite;
50     import dsfml.graphics.text;
51     import dsfml.graphics.texture;
52     import dsfml.graphics.transform;
53     import dsfml.graphics.transformable;
54     import dsfml.graphics.vertex;
55     import dsfml.graphics.vertexarray;
56     import dsfml.graphics.view;
57 }