using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class PoliceCallSet : BaseButton { public GameObject policeCallPanel; public override void RespondFun() { policeCallPanel.SetActive(true); } }