This commit is contained in:
Charles 2001-05-17 15:47:43 +00:00
parent 5674b059c2
commit 3faad16c03
2 changed files with 8 additions and 0 deletions

View File

@ -85,3 +85,9 @@ void CNpcShellEnemy::render()
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcShellEnemy::collidedWith( CThing *_thisThing )
{
// do nothing
}

View File

@ -25,7 +25,9 @@ public:
virtual void render();
virtual int getFrameCount() {return( 1 );}
virtual int getFrame() {return( m_shellType );}
virtual u8 hasBeenAttacked() {return( false );}
protected:
virtual void collidedWith(CThing *_thisThing);
u8 m_shellType;
};