Exemplo n.º 1
0
 public int Add(Resources.Ability ability, Knowledge from, Knowledge to)
 {
     plans.Add(new Plan(ability, from, to));
     return(plans.Count);
 }
Exemplo n.º 2
0
 public Plan(Resources.Ability ability, Knowledge from, Knowledge to)
 {
     this.ability = ability;
     this.from    = from;
     this.to      = to;
 }