12 lines
201 B
C#
12 lines
201 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
public class ToolPopupBase : MonoBehaviour
|
|
{
|
|
public Action onClose;
|
|
public void SetActive(bool isActive)
|
|
{
|
|
gameObject.SetActive(isActive);
|
|
}
|
|
}
|