This commit is contained in:
Paul 2001-04-11 15:48:16 +00:00
parent 6718a6ceb0
commit 96ac8236d9
6 changed files with 91 additions and 5 deletions

View file

@ -49,6 +49,7 @@ typedef enum
PM__RUN_SLOWDOWN,
PM__GRAVITY,
PM__TERMINAL_VELOCITY,
PM__BUTT_FALL_VELOCITY,
NUM_PLAYER_METRICS
}PLAYER_METRIC;
@ -69,6 +70,7 @@ enum
DEFAULT_PLAYER_RUN_SLOWDOWN=3<<2,
DEFAULT_PLAYER_PLAYER_GRAVITY=4<<2,
DEFAULT_PLAYER_TERMINAL_VELOCITY=8,
DEFAULT_BUTT_FALL_VELOCITY=14,
};
@ -146,6 +148,7 @@ public:
int slowdown();
void jump();
void fall();
void buttFall();
private: