14 lines
198 B
C#
14 lines
198 B
C#
using UnityEngine;
|
|
|
|
public class HelpWindow : MonoBehaviour
|
|
{
|
|
public HelpWindow prevWindow;
|
|
|
|
public HelpWindow nextWindow;
|
|
|
|
public void Show(bool show)
|
|
{
|
|
base.gameObject.SetActive(show);
|
|
}
|
|
}
|