A lot of changes. But all lead to that you now can draw shapes on a SFML::RenderWindow

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1696 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-23 05:58:32 +00:00
parent aabed07f10
commit aaf1dc3a66
8 changed files with 865 additions and 2 deletions

View file

@ -24,6 +24,16 @@
#include "Color.hpp"
#include "Rect.hpp"
#include "Drawable.hpp"
#include "Font.hpp"
#include "Glyph.hpp"
#include "Image.hpp"
#include "Renderer.hpp"
#include "RenderImage.hpp"
#include "RenderTarget.hpp"
#include "RenderWindow.hpp"
#include "Shape.hpp"
#include "Shader.hpp"
#include "View.hpp"
#include <SFML/Graphics.hpp>
@ -73,4 +83,14 @@ void Init_graphics( void )
Init_Color();
Init_Rect();
Init_Drawable();
Init_Glyph();
Init_Font();
Init_Image();
Init_Renderer();
Init_RenderTarget();
Init_RenderImage();
Init_RenderWindow();
Init_Shape();
Init_Shader();
Init_View();
}