Firstborn/Assets/RPG Creation Kit/Scripts/Dialogue System/Nodes/ToOrder/CommentNode.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

16 lines
362 B
C#

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;
}
}