//--------------------------------------------------------------------------- #ifndef exhaustCellH #define exhaustCellH //--------------------------------------------------------------------------- class ExhaustCell; #include "cell3.h" class ExhaustCell : public Cell3 { public: ExhaustCell(pAuditory pa,int xx,int yy, float IA, float CTON, float CTOG, float APTOSTD, float CNTSTDNTSTND, float EXHAUST, int _contStEx ); virtual int isStanding(); virtual void recalculate(); virtual void initialize(); protected: float exhaust; int standRounds,switched,contStEx; }; #endif