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

13 lines
395 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DialogueController : MonoBehaviour
{
// 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
}