initial setup of character data and dialogue holder

This commit is contained in:
Amaan Shawkath
2023-07-08 13:26:56 +01:00
parent dc4261aab3
commit e55f5ff18f
8 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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
}