mirror of
https://github.com/SFML/SFML.git
synced 2024-11-26 05:11:04 +08:00
20 lines
308 B
C++
20 lines
308 B
C++
|
#include "System.hpp"
|
||
|
#include "Clock.hpp"
|
||
|
#include "Vector2.hpp"
|
||
|
#include "Vector3.hpp"
|
||
|
|
||
|
VALUE globalSFMLNamespace;
|
||
|
|
||
|
VALUE GetNamespace( void )
|
||
|
{
|
||
|
return globalSFMLNamespace;
|
||
|
}
|
||
|
|
||
|
void Init_system( void )
|
||
|
{
|
||
|
globalSFMLNamespace = rb_define_module( "SFML" );
|
||
|
Init_Clock();
|
||
|
Init_Vector2();
|
||
|
Init_Vector3();
|
||
|
}
|