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