public Task(TaskDef def, TargetList targets, int ticksToPerform) : this(def, targets) { this.ticksToPerform = ticksToPerform; }
public Task(TaskDef def, TargetList targets) : this(def) { this.targets = targets; this.ticksToPerform = def.ticksToPerform; }