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

#define WINDOW_WIDTH 800
#define WINDOW_HEIGHT 600
#define TARGET_FPS 60

#define MAX_ENTITY_COUNT 500

#define ENTITY_MAX_ANIMATIONS 10
#define ANIMATION_MAX_FRAMES 4
#define GRAVITY 14

#endif