(client) fix:修复匿名定义中的图片无法加载的问题
This commit is contained in:
26
Client/Assets/Scripts/UI/DevMenuUI.cs
Normal file
26
Client/Assets/Scripts/UI/DevMenuUI.cs
Normal file
@ -0,0 +1,26 @@
|
||||
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()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user