This commit is contained in:
Charles 2001-05-09 15:00:18 +00:00
parent c85c9ee1d7
commit cf1405ecd5
2 changed files with 189 additions and 1 deletions

View file

@ -25,6 +25,9 @@ public:
void setOtherPlatform( CNpcDualPlatform *other );
void setMovement( DVECTOR move );
virtual u8 canDrop();
void setLineBase( DVECTOR base ) {m_lineBase = base;}
DVECTOR getLineBase() {return( m_lineBase );}
virtual void render();
protected:
virtual void setWaypoints( sThingPlatform *ThisPlatform );
virtual void processMovement( int _frames );
@ -33,6 +36,7 @@ protected:
CNpcDualPlatform *m_otherPlatform;
s32 m_maxExtension;
s32 m_extension;
DVECTOR m_lineBase;
};
#endif