1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Move modules/mono/glue/cs_files to modules/mono/glue/Managed/Files

Added dummy MSBuild project and solution to get tooling help when editing these files.
This commit is contained in:
Ignacio Etcheverry
2018-09-12 21:22:43 +02:00
parent 5e57beebb1
commit 995a40e8ef
45 changed files with 181 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace Godot
{
public static partial class ResourceLoader
{
public static T Load<T>(string path) where T : Godot.Resource
{
return (T) Load(path);
}
}
}