summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs
blob: 6461d35146246871dce03ddd190b2e86c5f31e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Godot
{
    public partial class ResourceLoader
    {
        public static Resource Load(string path, string typeHint = "", bool pNoCache = false)
        {
            throw new NotImplementedException();
        }
    }
}