brmlife/world.h
Petr Baudis 93882f79b9 Track agent energy
Base energy, move energy
2011-11-27 02:32:59 +01:00

9 lines
151 B
C

#ifndef BRMLIFE__WORLD_H
#define BRMLIFE__WORLD_H
struct world {
const static int newborn_energy = 500;
const static int move_cost = 10;
};
#endif