Advertisement
kadyr

Untitled

Oct 3rd, 2021
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5.  
  6. public class UIController : MonoBehaviour
  7. {
  8. public static UIController instance;
  9.  
  10. private void Awake()
  11. {
  12. if (instance == null)
  13. instance = this;
  14. }
  15.  
  16. public void UIDebug()
  17. {
  18. Debug.Log("it's ui controller");
  19. }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement