You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
public partial class Object
|
|
{
|
|
public static bool IsInstanceValid(Object instance)
|
|
{
|
|
return instance != null && instance.NativeInstance != IntPtr.Zero;
|
|
}
|
|
|
|
public static WeakRef WeakRef(Object obj)
|
|
{
|
|
return NativeCalls.godot_icall_Godot_weakref(Object.GetPtr(obj));
|
|
}
|
|
}
|
|
}
|