00001 #ifndef WATER_H 00002 #define WATER_H 1 00003 00004 #include "portion.h" 00005 00007 class water : public portion { 00008 public: 00014 water(double *coordinates, int index); 00015 ~water(); 00017 bool isColony(); 00018 void update(long int updateStamp); 00019 }; 00020 #endif
1.2.15