Advertisement
Guest User

Untitled

a guest
Oct 11th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5.  
  6. public class Menu : MonoBehaviour
  7. {
  8.     public ConfirmMenu confirmMenu;
  9.  
  10.     public class ConfirmMenu
  11.     {
  12.         public GameObject Panel, text;
  13.         public Button Yes, No;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement