mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 09:53:38 +02:00
12 lines
132 B
C++
12 lines
132 B
C++
#ifndef BRMLIFE__AGENT_H
|
|
#define BRMLIFE__AGENT_H
|
|
|
|
class position;
|
|
|
|
class agent {
|
|
public:
|
|
int id;
|
|
class position *pos;
|
|
};
|
|
|
|
#endif
|