mirror of
https://github.com/SFML/SFML.git
synced 2024-11-26 05:11:04 +08:00
0a2abc6933
Fixed now :) git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1801 4e206d99-4929-0410-ac5d-dfc041789085
12 lines
187 B
C++
12 lines
187 B
C++
#include "ruby.h"
|
|
|
|
extern "C"
|
|
{
|
|
void Init_all( void )
|
|
{
|
|
rb_require( "sfml/system" );
|
|
rb_require( "sfml/window" );
|
|
rb_require( "sfml/graphics" );
|
|
rb_require( "sfml/audio" );
|
|
}
|
|
} |