Firstborn/Assets/RPG Creation Kit/Scripts/Dialogue System/Nodes/ToOrder/CommentNode.cs

16 lines
362 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using XNode;
using RPGCreationKit.DialogueSystem;
namespace RPGCreationKit.DialogueSystem
{
[CreateNodeMenu("Dialogue System/Comment", order = 3)]
[NodeTint("#044d01")]
public class CommentNode : Node
{
[TextArea] [SerializeField] string content;
}
}