summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/Extensions/ResourceLoaderExtensions.cs
blob: ceecc589e6dfdefa488df093a519ec79f1645171 (plain)
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);
        }
    }
}