home *** CD-ROM | disk | FTP | other *** search
- #include "CellPass.h"
- #include <String.hpp>
-
- CellPass::CellPass(Scene2D * scene, int x, int y )
- : anim( scene, 1, "data/pass" )
- {
- anim.move( anim.get_width(0,0) * x, anim.get_height(0,0) * y );
- anim.start( 0, true );
- }
-
- bool CellPass::can_pass(const Creature * cre)const
- {
- return true;
- }
-