- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class UIParentPoint : MonoBehaviour {
- private static UIParentPoint _Instance;
- public static UIParentPoint Instance { get { return _Instance; } }
- private void Awake()
- {
- _Instance = this;
- }
- }
|