This commit is contained in:
parent
15d3aff1ab
commit
c48fce126a
12 changed files with 119 additions and 36 deletions
|
@ -53,9 +53,18 @@ class CPlayerStateButtBounceLand : public CPlayerState
|
|||
public:
|
||||
virtual void enter(class CPlayerModeBase *_playerMode);
|
||||
virtual void think(class CPlayerModeBase *_playerMode);
|
||||
|
||||
};
|
||||
|
||||
class CPlayerStateButtBounceUp : public CPlayerState
|
||||
{
|
||||
public:
|
||||
virtual void enter(class CPlayerModeBase *_playerMode);
|
||||
virtual void think(class CPlayerModeBase *_playerMode);
|
||||
|
||||
private:
|
||||
|
||||
int m_bounceFrames;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
@ -66,6 +75,7 @@ private:
|
|||
extern CPlayerStateButtBounce s_stateButtBounce;
|
||||
extern CPlayerStateButtBounceFall s_stateButtBounceFall;
|
||||
extern CPlayerStateButtBounceLand s_stateButtBounceLand;
|
||||
extern CPlayerStateButtBounceUp s_stateButtBounceUp;
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue