Evolve herbs dynamically based on energy

This commit is contained in:
Petr Baudis 2011-11-27 07:33:48 +01:00
parent 4d697adc83
commit 0e1243f86f
7 changed files with 83 additions and 19 deletions

6
main.h
View file

@ -1,6 +1,12 @@
#ifndef BRMLIFE__MAIN_H
#define BRMLIFE__MAIN_H
#include <list>
class agent;
extern int agent_id;
extern int tick_id;
extern std::list<class agent *> agents;
#endif