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