/// <summary> /// Creates the task and returns it's instance /// </summary> /// <returns>The instance of the task</returns> public static Builder Create() { PointBlankTask task = new PointBlankTask(); return(new Builder(task)); }
internal Builder(PointBlankTask task) { // Set the variables Task = task; }