This commit is contained in:
parent
73046f0bd7
commit
31d98d8f29
2 changed files with 6 additions and 0 deletions
|
@ -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 )
|
||||||
|
|
|
@ -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();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue