// Complete first play or first finish public void CompleteFirst(PlayerFirst first) { if (first == PlayerFirst.Play) { playedBefore = true; } else { finishedBefore = true; } // END if first } // END method
// Mark given action as complete for the first time and save the data public static void CompleteFirst(PlayerFirst action) { data.CompleteFirst(action); Save(); }