00001 //-*-Mode: C++;-*- 00002 #ifndef _BombedWall_h_ 00003 #define _BombedWall_h_ 00004 00005 #include "Wall.h" 00006 00007 //---- BombedWall ----------------------------------------------------------- 00008 00009 class BombedWall : public Wall 00010 { 00011 public: 00012 BombedWall(bool hasHomb = false); 00013 virtual ~BombedWall(); 00014 00015 bool HasBomb(); 00016 00017 virtual void Print(int indent = 0); 00018 private: 00019 bool _bomb; 00020 }; 00021 00022 #endif