13 lines
185 B
C#
13 lines
185 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[System.Serializable]
|
||
|
|
||
|
public class Dialogue
|
||
|
{
|
||
|
public string name;
|
||
|
public string[] sentences;
|
||
|
}
|
||
|
|