16 lines
292 B
Plaintext
16 lines
292 B
Plaintext
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class PHomeMysteriousDialogue : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField]
|
||
|
protected Sprite m_desImage;
|
||
|
public Sprite DesImage
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return m_desImage;
|
||
|
}
|
||
|
}
|
||
|
}
|