Finished SFML::Event and run tests to see that it works.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1618 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-06 15:38:26 +00:00
parent 3a7168b497
commit 0124c37fb5
2 changed files with 18 additions and 4 deletions

View file

@ -23,6 +23,7 @@
#include "main.hpp"
#include "Context.hpp"
#include "ContextSettings.hpp"
#include "Event.hpp"
VALUE globalSFMLNamespace;
@ -37,4 +38,5 @@ void Init_window( void )
rb_define_const(globalSFMLNamespace, "WindowLoaded", Qtrue);
Init_Context();
Init_ContextSettings();
Init_Event();
}