15 lines
277 B
C++
15 lines
277 B
C++
#include <osgParticle/Program>
|
|
#include <osgParticle/ParticleProcessor>
|
|
|
|
#include <osg/CopyOp>
|
|
|
|
osgParticle::Program::Program()
|
|
: ParticleProcessor()
|
|
{
|
|
}
|
|
|
|
osgParticle::Program::Program(const Program& copy, const osg::CopyOp& copyop)
|
|
: ParticleProcessor(copy, copyop)
|
|
{
|
|
}
|