aboutsummaryrefslogtreecommitdiff
path: root/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'world.h')
-rw-r--r--world.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/world.h b/world.h
index 9d89c98..fde3907 100644
--- a/world.h
+++ b/world.h
@@ -86,6 +86,7 @@ public:
};
class World{
+ Robot** botptr(const Robot *r);
Robot** targetbotptr(const Robot *r);
public:
@@ -98,6 +99,9 @@ public:
Robot& create(const Team *team,int iset,int nbanks,bool mobile,int x,int y,int heading);
Robot& createInFront(const Robot *caller,const Team *team,int iset,int nbanks,bool mobile);
+ void removeRobot(const Robot *r);
+ void removeTeam(const Team *team);
+
void tick();
Robot* targetbot(const Robot *r);