This commit is contained in:
Charles 2001-07-19 14:57:41 +00:00
parent d0a56dd8f7
commit 06af0d4ec4
4 changed files with 6 additions and 0 deletions

View File

@ -42,6 +42,7 @@ class CGaryStartTrigger : public CTrigger
{ {
public: public:
virtual void setGary( CNpcGaryFriend *gary ) {m_gary = gary;} virtual void setGary( CNpcGaryFriend *gary ) {m_gary = gary;}
bool alwaysThink() {return(true);}
protected: protected:
virtual void collidedWith(CThing *_thisThing); virtual void collidedWith(CThing *_thisThing);

View File

@ -36,6 +36,8 @@
class CGaryGoLeftTrigger : public CTrigger class CGaryGoLeftTrigger : public CTrigger
{ {
public:
bool alwaysThink() {return(true);}
protected: protected:
virtual void collidedWith(CThing *_thisThing); virtual void collidedWith(CThing *_thisThing);
}; };

View File

@ -36,6 +36,8 @@
class CGaryGoRightTrigger : public CTrigger class CGaryGoRightTrigger : public CTrigger
{ {
public:
bool alwaysThink() {return(true);}
protected: protected:
virtual void collidedWith(CThing *_thisThing); virtual void collidedWith(CThing *_thisThing);
}; };

View File

@ -38,6 +38,7 @@ class CGaryStopTrigger : public CTrigger
{ {
public: public:
void init(); void init();
bool alwaysThink() {return(true);}
protected: protected:
void collidedWith(CThing *_thisThing); void collidedWith(CThing *_thisThing);