16 lines
326 B
C#
16 lines
326 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using I2.Loc;
|
||
|
|
using TMPro;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
namespace Ichni.Story.UI
|
||
|
|
{
|
||
|
|
public class DialogTextUI : MonoBehaviour
|
||
|
|
{
|
||
|
|
public Image background;
|
||
|
|
public Localize speakerNameText;
|
||
|
|
public Localize contentText;
|
||
|
|
}
|
||
|
|
}
|