27 lines
422 B
C#
27 lines
422 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace UI
|
|
{
|
|
public class DevMenuUI : MonoBehaviour
|
|
{
|
|
public GameObject menuContent;
|
|
|
|
public GameObject textTemplate;
|
|
public GameObject buttonTemplate;
|
|
void Start()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
void Init()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|