mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 18:03:37 +02:00
brmlife: Initial version
Can draw 10x10 field of dots.
This commit is contained in:
commit
ce6f46ef1c
5 changed files with 163 additions and 0 deletions
12
main.cc
Normal file
12
main.cc
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue