This commit is contained in:
parent
5674b059c2
commit
3faad16c03
2 changed files with 8 additions and 0 deletions
|
@ -85,3 +85,9 @@ void CNpcShellEnemy::render()
|
|||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void CNpcShellEnemy::collidedWith( CThing *_thisThing )
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue