//--------------------------------------------------------------------------- #ifndef cell1H #define cell1H class Cell1; #include "grCell.h" class Cell1 : public GrCell { public: Cell1(pAuditory pa,int xx,int yy); virtual int isStanding(); virtual void recalculate(); virtual void initialize(); }; //--------------------------------------------------------------------------- #endif