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();
|
||
|
}
|
||
|
}
|
||
|
}
|