Files
gmtk-2023/Assets/Scripts/DialogueSystem/Dialogue.cs
Amaan Shawkath c4b5d7dac3 Improved logic for character sheets
added a way to retrieve sheets for characters
2023-07-08 18:06:06 +01:00

19 lines
377 B
C#

[System.Serializable]
public class Dialogue
{
public string text;
public string bulletizedText;
}
public class QuestionData
{
public static string[] Questions = new string[]
{
"Who are you?",
"Tell me something about yourself.",
"What is your greatest accomplishment?",
"Where do you see yourself in five years?"
};
}