Track agent energy

Base energy, move energy
This commit is contained in:
Petr Baudis 2011-11-27 02:32:59 +01:00
parent 4fe552a79e
commit 93882f79b9
5 changed files with 22 additions and 6 deletions

9
world.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef BRMLIFE__WORLD_H
#define BRMLIFE__WORLD_H
struct world {
const static int newborn_energy = 500;
const static int move_cost = 10;
};
#endif