Client Timeout

This commit is contained in:
brausjonas
2023-01-29 01:54:53 +01:00
parent da8ce4b425
commit 6754d710b2
21 changed files with 1057 additions and 187 deletions
+18
View File
@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIHandler : MonoBehaviour
{
[SerializeField] private GameObject layout0;
private void Start()
{
layout0.SetActive(true);
}
public void DeactivateLayout0()
{
layout0.SetActive(false);
}
}