home *** CD-ROM | disk | FTP | other *** search
- #ifndef CELLWALL_H
- #define CELLWALL_H
-
- #include "Cell.h"
- #include <2D/Animation2D.h>
- class Creature;
- class Scene2D;
-
- class CellWall : public Cell
- {
- public:
- CellWall(Scene2D * scene, int x, int y, int neighbours_mask);
- virtual bool can_pass(const Creature * cre)const;
- private:
- Animation2D anim;
- };
- #endif //CELLWALL_H