17 lines
303 B
C#
17 lines
303 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class DialogBox : DialogBoxBase
|
|
{
|
|
[SerializeField] protected GameObject choiceButton;
|
|
|
|
private void Start()
|
|
{
|
|
// 初始化选择按钮
|
|
choiceButtonPrefab = choiceButton;
|
|
}
|
|
}
|
|
}
|
|
|