13 lines
250 B
C#
13 lines
250 B
C#
|
using System;
|
||
|
|
||
|
namespace Godot
|
||
|
{
|
||
|
public partial class ResourceLoader
|
||
|
{
|
||
|
public static Resource Load(string path, string typeHint = "", bool pNoCache = false)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|