16 lines
336 B
C++
16 lines
336 B
C++
#ifndef SphericalEMITTER_H
|
|
#define SphericalEMITTER_H
|
|
|
|
#include "PointEmitter.h"
|
|
|
|
class SphericalEmitter : public PointEmitter {
|
|
public:
|
|
SphericalEmitter(CKContext* ctx,CK_ID ent,char* name) : PointEmitter(ctx,ent,name){};
|
|
|
|
protected:
|
|
// add a particle
|
|
void InitiateParticle(Particle*);
|
|
void InitiateDirection(Particle*);
|
|
};
|
|
|
|
#endif |