mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 08:53:50 +00:00
28 lines
826 B
C++
28 lines
826 B
C++
#ifndef OENGINE_OGRE_PARTICLES_H
|
|
#define OENGINE_OGRE_PARTICLES_H
|
|
|
|
#include <OgreParticleAffectorFactory.h>
|
|
|
|
/** Factory class for GrowFadeAffector. */
|
|
class GrowFadeAffectorFactory : public Ogre::ParticleAffectorFactory
|
|
{
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::String getName() const
|
|
{ return "GrowFade"; }
|
|
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::ParticleAffector *createAffector(Ogre::ParticleSystem *psys);
|
|
};
|
|
|
|
/** Factory class for GravityAffector. */
|
|
class GravityAffectorFactory : public Ogre::ParticleAffectorFactory
|
|
{
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::String getName() const
|
|
{ return "Gravity"; }
|
|
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::ParticleAffector *createAffector(Ogre::ParticleSystem *psys);
|
|
};
|
|
|
|
#endif /* OENGINE_OGRE_PARTICLES_H */
|