9 lines
238 B
C#
9 lines
238 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class PCUIMenu : MonoBehaviour
|
||
|
|
{
|
||
|
|
public virtual void Set() { gameObject.SetActive(true); }
|
||
|
|
public void Off() { gameObject.SetActive(false); }
|
||
|
|
}
|