home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 May / Game.EXE_05_2002.iso / Alawar / src / CellWall.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-08  |  338 b   |  17 lines

  1. #ifndef CELLWALL_H
  2. #define CELLWALL_H
  3.  
  4. #include "Cell.h"
  5. #include <2D/Animation2D.h>
  6. class Creature;
  7. class Scene2D;
  8.  
  9. class CellWall : public Cell
  10. {
  11. public:    
  12.     CellWall(Scene2D * scene, int x, int y, int neighbours_mask);
  13.     virtual bool can_pass(const Creature * cre)const;
  14. private:    
  15.     Animation2D anim;
  16. };
  17. #endif //CELLWALL_H