added addPeoplePanel

This commit is contained in:
Wesley
2015-04-08 21:07:59 +02:00
parent 7c28dd3a16
commit 77dae9741e
11 changed files with 578 additions and 137 deletions
+7 -1
View File
@@ -11,13 +11,15 @@ public class Action
private int starttime;
private int duration;
private DrawObject target;
private Waypoint waypoint;
public Action(Point2D position, int starttime, int duration, DrawObject tar)
public Action(Point2D position, int starttime, int duration, DrawObject tar, Waypoint waypoint)
{
this.position = position;
this.starttime = starttime;
this.duration = duration;
this.target = tar;
this.waypoint = waypoint;
}
public Point2D getPosition()
@@ -44,4 +46,8 @@ public class Action
{
return duration;
}
public Waypoint getWaypoint(){
return waypoint;
}
}