Jump Thingy 1.0
Jump platform game
Loading...
Searching...
No Matches
globals.h
Go to the documentation of this file.
1#ifndef GLOBALS_H
2#define GLOBALS_H
3
4#define WIDTH 600
5#define HEIGHT 900
6
16#define DEBUG 0
17
18extern float gravity;
19extern float jumpSpd;
20extern float moveSpd;
21
22
23#endif //GLOBALS_H
float gravity
The gravitational force applied to the player.
Definition globals.c:3
float moveSpd
The horizontal movement speed of the player.
Definition globals.c:5
float jumpSpd
The vertical speed of the player when jumping.
Definition globals.c:4