home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 May / Game.EXE_05_2002.iso / Alawar / src / Cell.h next >
Encoding:
C/C++ Source or Header  |  2002-04-01  |  174 b   |  13 lines

  1. #ifndef CELL_H
  2. #define CELL_H
  3.  
  4. class Creature;
  5.  
  6. class Cell
  7. {
  8. public:    
  9.     virtual ~Cell()
  10.     {}
  11.     virtual bool can_pass(const Creature * cre)const=0;
  12. };
  13. #endif //CELL_H