Finished secretary
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user