summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/NodeExtensions.cs
blob: a099b0e400630e131db533b14b557d20fd3c6722 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Godot
{
    public partial class Node
    {
        public T GetNode<T>(NodePath path) where T : Godot.Node
        {
            return (T)GetNode(path);
        }
    }
}