15 lines
215 B
C#
15 lines
215 B
C#
using UnityEngine;
|
|
|
|
namespace Scampz.GameJam
|
|
{
|
|
[System.Serializable]
|
|
public class Dialogue
|
|
{
|
|
[TextArea(3, 10)]
|
|
public string[] Sentences;
|
|
|
|
[SerializeField]
|
|
public SFXClip SoundEffect;
|
|
}
|
|
}
|