20 lines
328 B
C#
20 lines
328 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class StartScreenView : MonoBehaviour
|
|
{
|
|
[SerializeField] private GameObject startScreen;
|
|
public Button tapToStartButton;
|
|
|
|
public void Show()
|
|
{
|
|
startScreen.SetActive(true);
|
|
}
|
|
|
|
public void Hide()
|
|
{
|
|
startScreen.SetActive(false);
|
|
}
|
|
|
|
}
|