using UnityEngine; public class ReceptionistAnimEventWrapper : MonoBehaviour { public ReceptionistCountingBehavior countingBehavior; public void PlayLoveAudio(string lovesMe) { if (lovesMe == "true") { countingBehavior.PlayCountingAudio(true); } else { countingBehavior.PlayCountingAudio(false); } } }