summaryrefslogtreecommitdiff
path: root/inc/constants.hpp
blob: 08f548e6f9f51b2a3437a9fa9822351ca7f8da20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef constants_h
#define constants_h

const int CREATURES             = 10;
const int RESOURCES             = 100;
const int MINIMUM_RESOURCES     = 90;
const int WINDOW_X              = 1080;
const int WINDOW_Y              = 640;

const int CREATURE_START_HEALTH = 500;
const int CREATURE_MAX_HEALTH   = 1000;
const int CREATURE_BEST_SENSE   = 100;
const int CREATURE_SPEED        = 1;
const int CREATURE_REACH        = 5;
const int CREATURE_SIZE         = 10;

const int RESOURCE_SIZE         = 5;
const int RESOURCE_AMOUNT       = 100;

#endif