brmlife/agent.h
Petr Baudis ce6f46ef1c brmlife: Initial version
Can draw 10x10 field of dots.
2011-11-26 19:21:27 +01:00

12 lines
132 B
C++

#ifndef BRMLIFE__AGENT_H
#define BRMLIFE__AGENT_H
class position;
class agent {
public:
int id;
class position *pos;
};
#endif