29 lines
380 B
C#
29 lines
380 B
C#
#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 |