16 lines
482 B
C#
16 lines
482 B
C#
using Godot;
|
|
using System.Linq;
|
|
|
|
namespace Movementtests.interfaces;
|
|
|
|
public static class NodeExtensions
|
|
{
|
|
public static IDamageable[] ToIDamageables(this GodotObject[] nodes)
|
|
{
|
|
return nodes == null ? System.Array.Empty<IDamageable>() : nodes.OfType<IDamageable>().ToArray();
|
|
}
|
|
public static IKillable[] ToIKillables(this GodotObject[] nodes)
|
|
{
|
|
return nodes == null ? System.Array.Empty<IKillable>() : nodes.OfType<IKillable>().ToArray();
|
|
}
|
|
} |