Example #1
0
 public ActivityInteraction(string caption, string description, ImmediateActivity activity)
     : base(caption, description, activity.Actor)
 {
     Activity = activity;
 }
Example #2
0
 public MovementProgress(LinkedList <Tile> path, ImmediateActivity theGoal = null)
 {
     TheGoal        = theGoal;
     Path           = path;
     UltimateTarget = path.Last.Value;
 }