#ifndef LAVA_T
#define LAVA_T

class lava_t {
public:
 double temperature;
 vector position;
 vector velocity;
 vector force;
 double radius;
 double mass;
 int type;
 double dT;
};


class lava_list_t {
  lava_t *item;
  lava_list_t *next;
};


#endif
