irrlicht/source/Irrlicht.NET/IParticleAffector.cpp
bitplane 30b56d2ec5 Moved everything to /trunk
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@643 dfc29bdd-3216-0410-991c-e03cc46cb475
2007-05-20 18:03:49 +00:00

20 lines
355 B
C++

#include "IParticleAffector.h"
#include "NativeConverter.h"
namespace Irrlicht
{
namespace Scene
{
IParticleAffector::IParticleAffector( irr::scene::IParticleAffector* realAffector )
: particleAffector( realAffector )
{
particleAffector->grab();
}
IParticleAffector::~IParticleAffector()
{
particleAffector->drop();
}
}
}