This commit is contained in:
parent
5674b059c2
commit
3faad16c03
@ -85,3 +85,9 @@ void CNpcShellEnemy::render()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void CNpcShellEnemy::collidedWith( CThing *_thisThing )
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
@ -25,7 +25,9 @@ public:
|
|||||||
virtual void render();
|
virtual void render();
|
||||||
virtual int getFrameCount() {return( 1 );}
|
virtual int getFrameCount() {return( 1 );}
|
||||||
virtual int getFrame() {return( m_shellType );}
|
virtual int getFrame() {return( m_shellType );}
|
||||||
|
virtual u8 hasBeenAttacked() {return( false );}
|
||||||
protected:
|
protected:
|
||||||
|
virtual void collidedWith(CThing *_thisThing);
|
||||||
|
|
||||||
u8 m_shellType;
|
u8 m_shellType;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user