mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
18 lines
313 B
C#
18 lines
313 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
public partial class FuncRef
|
|
{
|
|
public void SetInstance(Object instance)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SetFunction(string name)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|