From 581eb102d540bc495ec62dae25fcea0d676d1a59 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 24 Aug 2020 00:14:06 -0400 Subject: Dialogue; Unlock cursor --- Assets/Scripts/Dialogue/Dialogue.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Assets/Scripts/Dialogue/Dialogue.cs (limited to 'Assets/Scripts/Dialogue/Dialogue.cs') diff --git a/Assets/Scripts/Dialogue/Dialogue.cs b/Assets/Scripts/Dialogue/Dialogue.cs new file mode 100644 index 0000000..bf2c960 --- /dev/null +++ b/Assets/Scripts/Dialogue/Dialogue.cs @@ -0,0 +1,12 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +[System.Serializable] +public class Dialogue +{ + public string name; + + [TextArea(3, 10)] + public string[] sentences; +} -- cgit v1.2.3