Finished the Graphics Module. Gonna go trough all files again now and add the rdoc comments where I've left it out.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1699 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-23 17:21:20 +00:00
parent dbd8795df8
commit bc24802219
6 changed files with 640 additions and 1 deletions

View file

@ -33,6 +33,8 @@
#include "RenderWindow.hpp"
#include "Shape.hpp"
#include "Shader.hpp"
#include "Sprite.hpp"
#include "Text.hpp"
#include "View.hpp"
#include <SFML/Graphics.hpp>
@ -92,5 +94,7 @@ void Init_graphics( void )
Init_RenderWindow();
Init_Shape();
Init_Shader();
Init_Sprite();
Init_Text();
Init_View();
}