CD-ROOM/Assets/Scripts/Tools/DialogueSystem/Dialogue.cs
Gerard Gascón 341a877b4a init
2025-04-24 17:37:25 +02:00

10 lines
273 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "New Character", menuName = "Character")]
public class Dialogue : ScriptableObject{
public string characterName;
[TextArea] public string[] sentences;
}