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

#endif