17 lines
390 B
C#
17 lines
390 B
C#
using UnityEngine;
|
|
|
|
namespace Tuan.GameFramework
|
|
{
|
|
public class MainUICanvas : SingletonMono<MainUICanvas>
|
|
{
|
|
public GameObject InitBg;
|
|
public RectTransform Top;
|
|
public RectTransform Medium;
|
|
public RectTransform Bottom;
|
|
public Camera UICamera;
|
|
private void Awake()
|
|
{
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|
|
} |