Files
test/Assets/PerfectWorld/Scripts/UI/UIManager.cs
T
2025-10-27 10:23:44 +07:00

20 lines
350 B
C#

using UnityEngine;
namespace BrewMonster
{
public class UIManager : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}