brmlife: Initial version

Can draw 10x10 field of dots.
This commit is contained in:
Petr Baudis 2011-11-26 19:20:51 +01:00
commit ce6f46ef1c
5 changed files with 163 additions and 0 deletions

12
agent.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef BRMLIFE__AGENT_H
#define BRMLIFE__AGENT_H
class position;
class agent {
public:
int id;
class position *pos;
};
#endif