Ashby Issac ece8c8d5cb Initialized project with loader scripts and necessary components.
Added newtonsoft package.
Added dotween package.
Updated game scene with PopupManager, GameBootLoader.
Added necessary UI scripts.
2026-01-20 20:17:48 +05:30

17 lines
280 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIBase : MonoBehaviour
{
public virtual void Show()
{
gameObject.SetActive(true);
}
public virtual void Hide()
{
gameObject.SetActive(false);
}
}