15 lines
456 B
C#
15 lines
456 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class DialogueController : MonoBehaviour
|
|
{
|
|
[SerializeField] private DialoguePanel m_dialoguePanel;
|
|
|
|
// TODO:
|
|
// - Load the correct character based on the character who has been interacted with
|
|
// - Display the 5 question options and hook up their responses
|
|
// - Fill out a character sheet as you go along
|
|
// - Update the visual with the text
|
|
}
|