16 lines
274 B
C#
16 lines
274 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public class UpdateChecker : MonoBehaviour
|
||
|
{
|
||
|
public UpdateHandler Handler;
|
||
|
|
||
|
public void OpenSettings()
|
||
|
{
|
||
|
Handler.OpenSettingsDetached();
|
||
|
}
|
||
|
|
||
|
public void SetActive(bool active)
|
||
|
{
|
||
|
gameObject.SetActive(active);
|
||
|
}
|
||
|
}
|