#ifndef _gasParticles_h_
#define _gasParticles_h_

#include <dms/Vector3.h>

class gasParticles
    {
    public:
     gasParticles(int numParticles,dms::Vector3,float);
     void initialize(void);
     void update(void);
     void draw(void);
    private:
     void initParticle(int n);
     int numParticles_;
     struct _particle * particles_;
     dms::Vector3 posCenter_;
     float posRadius_;
     float width_, height_;
    };

#endif
