18 lines
256 B
C#
18 lines
256 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class LogsWindow : MonoBehaviour
|
|
{
|
|
public Text text;
|
|
|
|
private void Awake()
|
|
{
|
|
Object.DontDestroyOnLoad(base.gameObject);
|
|
}
|
|
|
|
public void ShowWindow(bool show)
|
|
{
|
|
base.gameObject.SetActive(show);
|
|
}
|
|
}
|