1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00
Files
godot/modules/mono/glue/cs_files/NodeExtensions.cs
2018-07-20 13:55:13 +02:00

11 lines
183 B
C#

namespace Godot
{
public partial class Node
{
public T GetNode<T>(NodePath path) where T : Godot.Node
{
return (T)GetNode(path);
}
}
}