Made the classes that is non-copyable in the C++ library also non-copyable in rbSFML.
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1738 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
cd04d29584
commit
30865b6ef9
10 changed files with 27 additions and 1 deletions
|
@ -46,6 +46,7 @@ VALUE globalBlendNamespace;
|
|||
VALUE globalVector2Class;
|
||||
VALUE globalVector3Class;
|
||||
VALUE globalWindowClass;
|
||||
VALUE globalNonCopyableModule;
|
||||
|
||||
static bool CheckDependencies( void )
|
||||
{
|
||||
|
@ -78,6 +79,7 @@ void Init_graphics( void )
|
|||
globalVector2Class = RetrieveSFMLClass( "Vector2" );
|
||||
globalVector3Class = RetrieveSFMLClass( "Vector3" );
|
||||
globalWindowClass = RetrieveSFMLClass( "Window" );
|
||||
globalNonCopyableModule = RetrieveSFMLClass( "NonCopyable" );
|
||||
rb_define_const(globalSFMLNamespace, "GraphicsLoaded", Qtrue);
|
||||
|
||||
CreateBlendEnum();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue