11 lines
240 B
C#
11 lines
240 B
C#
using Godot;
|
|
|
|
namespace Babushka.scripts.CSharp.Low_Code.Variables;
|
|
|
|
/// <summary>
|
|
/// A Node type that carries a Variant payload.
|
|
/// </summary>
|
|
public partial class VariableNode : Node
|
|
{
|
|
[Export] public Variant Payload { get; set; }
|
|
} |