00001 #ifndef LAND_H 00002 #define LAND_H 1 00003 00004 #include "pheromone.h" 00005 #include "portion.h" 00006 #include "ant.h" 00007 #include "plant.h" 00008 00010 class land : public portion { 00011 GLfloat originalPortionColor[4]; 00012 00013 public: 00019 land(double *coordinates, int index); 00020 ~land(); 00021 void update(long int updateStamp); 00022 bool isColony(); 00023 void displayPheromones(char); 00024 }; 00025 #endif
1.2.15