WXMC/.svn/pristine/c8/c83493ea1d9f0c439a9f71aa3a9dbde0daa58cac.svn-base

47 lines
803 B
Plaintext
Raw Permalink Normal View History

2024-12-04 16:18:46 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MysteriouDialogue : MonoBehaviour
{
[SerializeField]
private PHomeNPC m_speaker;
public PHomeNPC Speaker
{
get
{
return m_speaker;
}
}
[SerializeField]
private string m_content;
public string Content
{
get
{
return m_content;
}
}
[SerializeField]
private DialogueData m_leftDialogue;
public DialogueData LeftDialogue
{
get
{
return m_leftDialogue;
}
}
[SerializeField]
private DialogueData m_rightDialogue;
public DialogueData RightDialogue
{
get
{
return m_rightDialogue;
}
}
}