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
main.cc Normal file
View file

@ -0,0 +1,12 @@
#include <iostream>
#include "agent.h"
#include "map.h"
int
main(int argc, char *argv[])
{
class map map(10, 10);
map.print_map();
return 0;
}