16 lines
252 B
C#
16 lines
252 B
C#
|
|
using TMPro;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
namespace Gameplay.Story.Cmp.Other
|
||
|
|
{
|
||
|
|
public class CmpEditorUI : MonoBehaviour
|
||
|
|
{
|
||
|
|
|
||
|
|
public Image m_bgImg;
|
||
|
|
public Image m_fgImg;
|
||
|
|
public TextMeshProUGUI m_text;
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|