23 lines
394 B
C#
23 lines
394 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description:
|
|
* @Date: 2026年01月29日 星期四 16:01:02
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
|
|
namespace TH1_Logic.Comic
|
|
{
|
|
public class ComicItemMono : MonoBehaviour
|
|
{
|
|
public RectTransform ItemRect;
|
|
public TextMeshProUGUI TextMono;
|
|
public Image DialogImage;
|
|
public Image ItemImage;
|
|
}
|
|
} |