30b56d2ec5
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@643 dfc29bdd-3216-0410-991c-e03cc46cb475
20 lines
355 B
C++
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();
|
|
}
|
|
}
|
|
} |