]> git.lizzy.rs Git - SuperMouseAdventure.git/blob - 2DGame/Assets/Scripts/Dialogue.cs
Text-Box v0.1
[SuperMouseAdventure.git] / 2DGame / Assets / Scripts / Dialogue.cs
1 using System.Collections;
2 using System.Collections.Generic;
3 using UnityEngine;
4
5 [System.Serializable]
6 public class Dialogue
7 {
8     public string name;
9
10     [TextArea(3, 10)]
11     public string[] sentences;
12 }