diff options
Diffstat (limited to 'modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs')
-rw-r--r-- | modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs b/modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs new file mode 100644 index 0000000000..6461d35146 --- /dev/null +++ b/modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs @@ -0,0 +1,12 @@ +using System; + +namespace Godot +{ + public partial class ResourceLoader + { + public static Resource Load(string path, string typeHint = "", bool pNoCache = false) + { + throw new NotImplementedException(); + } + } +} |