mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-01 17:33:35 +02:00
12 lines
169 B
C++
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
|