mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:15:32 +00:00
Copy constructor signature fix
This commit is contained in:
parent
d9a00288f8
commit
347c9b57b8
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ ParticleShooter::ParticleShooter()
|
|||
{
|
||||
}
|
||||
|
||||
ParticleShooter::ParticleShooter(const osgParticle::Shooter ©, const osg::CopyOp ©op)
|
||||
ParticleShooter::ParticleShooter(const ParticleShooter ©, const osg::CopyOp ©op)
|
||||
: osgParticle::Shooter(copy, copyop)
|
||||
{
|
||||
*this = copy;
|
||||
|
|
|
@ -76,7 +76,7 @@ namespace NifOsg
|
|||
ParticleShooter(float minSpeed, float maxSpeed, float horizontalDir, float horizontalAngle, float verticalDir, float verticalAngle,
|
||||
float lifetime, float lifetimeRandom);
|
||||
ParticleShooter();
|
||||
ParticleShooter(const Shooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
|
||||
ParticleShooter(const ParticleShooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
|
||||
|
||||
META_Object(NifOsg, ParticleShooter)
|
||||
|
||||
|
|
Loading…
Reference in a new issue