|
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class OverAllCloseButton : BaseButton |
|
{ |
|
public Transform overAllReportPanel; |
|
public override void RespondFun() |
|
{ |
|
overAllReportPanel.gameObject.SetActive(false); |
|
} |
|
|
|
|
|
}
|
|
|