Files
gmtk-2023/Assets/Scripts/DialogueSystem/Dialogue.cs
Amaan Shawkath ba34c89c8b basic setup of a character sheet - needs some more work
Wiring up character interviewed
Added property for bulletized text - ready to add when we have some
2023-07-08 22:00:01 +02:00

20 lines
425 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?",
"What are your salary requirements?"
};
}