alotta upgrade stuff but no upgrades
This commit is contained in:
parent
b9fb490dce
commit
3b60583c76
35 changed files with 2937 additions and 61 deletions
14
Assets/Scripts/UIHandler.cs
Normal file
14
Assets/Scripts/UIHandler.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using UnityEngine;
|
||||
|
||||
public class UIHandler : MonoBehaviour
|
||||
{
|
||||
public void ShowUI(GameObject shownUI)
|
||||
{
|
||||
shownUI.SetActive(true);
|
||||
}
|
||||
|
||||
public void HideUI(GameObject hiddenUI)
|
||||
{
|
||||
hiddenUI.SetActive(false);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue