mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 18:03:37 +02:00
16 lines
226 B
C++
16 lines
226 B
C++
#include <iostream>
|
|
|
|
#include "agent.h"
|
|
#include "map.h"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
class map map(10, 10);
|
|
|
|
class tile &agentpos = map.tile_at(4, 4);
|
|
class agent agent(0, agentpos);
|
|
|
|
map.print_map();
|
|
return 0;
|
|
}
|