summaryrefslogtreecommitdiff
path: root/src/constants.h
blob: f16466ea3c58eb887924e72452588400afa86ed8 (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 120

#define MAX_ENTITY_COUNT 500

#define ENTITY_MAX_ANIMATIONS 10
#define ANIMATION_MAX_FRAMES 4
#define GRAVITY 400

#endif