using UnityEngine; using Core.Lifecycle; using Core.SaveLoad; public class ReceptionistBehaviour : MonoBehaviour { public int holdFlowerDuration; public bool flowerWasStolen; public void FlowerHasBeenStolen() { flowerWasStolen = true; GetComponentInChildren().ChangeState("FlowerWasStolen"); } }