995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
17 lines
313 B
C#
17 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();
|
|
}
|
|
}
|
|
}
|