Files
gmtk-2023/Assets/Scripts/DialogueSystem/DialogueController.cs
2023-07-08 13:49:16 +01:00

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
}