summaryrefslogtreecommitdiff
path: root/src/constants.h
blob: 5fc959f3852906e47375a0e748226a1301b483ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CONSTANTS_H_
#define CONSTANTS_H_

#define WINDOW_WIDTH 1280
#define WINDOW_HEIGHT 640
#define TARGET_FPS 144

#define MAX_ENTITY_COUNT 500

#define ENTITY_MAX_ANIMATIONS 10
#define ANIMATION_MAX_FRAMES 4
#define GRAVITY 200

#endif