mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
Copy constructor signature fix
This commit is contained in:
parent
d9a00288f8
commit
347c9b57b8
@ -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…
x
Reference in New Issue
Block a user