rj-action-library/Tools/Messages/Message.cs

29 lines
380 B
C#
Raw Normal View History

2025-06-19 17:22:25 +00:00
#if TOOLS
using Godot;
using Rokojori;
using System.Collections.Generic;
namespace Rokojori.Tools
{
[Tool]
public partial class Message:Node
{
[Export]
public Node[] titleNodes;
[Export]
public UIText content;
[Export]
public UIText nodeLink;
[Export]
public UIText resourceLink;
[Export]
public UIText webLink;
}
}
#endif