summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Dialogue/Dialogue.cs
blob: bf2c960b4c22594a249b8babc3d308dc63051f06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[System.Serializable]
public class Dialogue
{
    public string name;
    
    [TextArea(3, 10)]
    public string[] sentences;
}