You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
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();
|
|
}
|
|
}
|
|
}
|