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
}
void CNpcClamEnemy::processUserCollision( CThing *thisThing )
{
// do nothing
}
bool CNpcClamEnemy::processSensor()
{
switch( m_sensorFunc )

View File

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