#pragma once #include class Particle { public: Particle(); ~Particle(void); D3DXVECTOR3 position; D3DCOLOR color; bool fire; //if false, this is a smoke or dust particle float size; };