public void StartGrowing() { if (stem.Length() < maxLength) { growthController.StartGrowing(); } else { growthController.FinishGrowing(); } }