This commit is contained in:
Charles 2001-05-14 15:19:07 +00:00
parent 73046f0bd7
commit 31d98d8f29
2 changed files with 6 additions and 0 deletions

View file

@ -41,6 +41,11 @@ void CNpcClamEnemy::processEnemyCollision( CThing *thisThing )
// do nothing // do nothing
} }
void CNpcClamEnemy::processUserCollision( CThing *thisThing )
{
// do nothing
}
bool CNpcClamEnemy::processSensor() bool CNpcClamEnemy::processSensor()
{ {
switch( m_sensorFunc ) switch( m_sensorFunc )

View file

@ -17,6 +17,7 @@
class CNpcClamEnemy : public CNpcEnemy class CNpcClamEnemy : public CNpcEnemy
{ {
protected: protected:
virtual void processUserCollision( CThing *thisThing );
virtual void processEnemyCollision( CThing *thisThing ); virtual void processEnemyCollision( CThing *thisThing );
virtual bool processSensor(); virtual bool processSensor();
}; };