Files
aibis-dream/Assets/Scripts/UI/DialogUI/DialogBox.cs
T
2024-09-13 19:39:22 +00:00

18 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AibisDream
{
public class DialogBox : DialogBoxBase
{
[SerializeField] protected GameObject choiceButton;
protected override void LoadChoiceButton()
{
choiceButtonPrefab = choiceButton;
}
}
}