SupaLidlGame/Debug/NodePathToken.cs

21 lines
311 B
C#
Raw Normal View History

2023-09-24 18:51:23 -07:00
using Godot;
public enum NodePathTokenType
{
Node,
Property
}
public struct NodePathToken
{
public NodePath Path { get; set; }
public NodePathTokenType Type { get; set; }
public NodePathToken(NodePath path, NodePathTokenType type)
{
Path = path;
Type = type;
}
}