cirnogodot/GTweensGodot/Godot/Source/Extensions/GodotObjectExtensions.cs

10 lines
290 B
C#
Raw Normal View History

2025-02-24 11:52:50 +01:00
using Godot;
using GTweens.Delegates;
namespace GTweensGodot.Extensions;
public static class GodotObjectExtensions
{
public static ValidationDelegates.Validation GetGodotObjectValidationFunction(GodotObject godotObject)
=> () => GodotObject.IsInstanceValid(godotObject);
}