brmlife/main.h
2011-11-27 07:33:48 +01:00

12 lines
169 B
C++

#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