mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 21:01:05 +08:00
1a7e7a30be
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1736 4e206d99-4929-0410-ac5d-dfc041789085
10 lines
166 B
C++
10 lines
166 B
C++
#include "ruby.h"
|
|
|
|
void Init_all( void )
|
|
{
|
|
rb_require( "sfml/system" );
|
|
rb_require( "sfml/window" );
|
|
rb_require( "sfml/graphics" );
|
|
rb_require( "sfml/audio" );
|
|
}
|