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