1 2 3 4 5 6 7 8 9 10
namespace Godot { public static partial class ResourceLoader { public static T Load<T>(string path) where T : Godot.Resource { return (T) Load(path); } } }