Finished secretary

This commit is contained in:
2025-12-02 14:49:55 +01:00
parent 8da24e3ea3
commit 2589e56bda
129 changed files with 16110 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
using Core.Lifecycle;
using Core.SaveLoad;
public class ReceptionistBehaviour : MonoBehaviour
{
public int holdFlowerDuration;
public bool flowerWasStolen;
public void FlowerHasBeenStolen()
{
flowerWasStolen = true;
GetComponentInChildren<AppleMachine>().ChangeState("FlowerWasStolen");
}
}