FlappyBird/config.h

19 lines
291 B
C

#ifndef _H_CONFIG
#define _H_CONFIG
#define KEY_QUIT 'q'
#define KEY_JUMP ' '
#define FPS 10
#define WIDTH 60
#define HEIGHT 20
#define CAM_OFFSET_X 10
#define BIRD_VEL_X 10.0F
#define BIRD_VEL_Y_JUMP 13.5F
#define BIRD_ACC_Y -30.0F
#define PIPE_DISTANCE 16
#define PIPE_HEIGHT 3
#endif