16 lines
288 B
C#
16 lines
288 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class DialogBox : DialogBoxBase
|
|
{
|
|
[SerializeField] protected GameObject choiceButton;
|
|
|
|
protected override void LoadChoiceButton()
|
|
{
|
|
choiceButtonPrefab = choiceButton;
|
|
}
|
|
}
|
|
}
|
|
|