rj-action-library/Runtime/Selectors/Selector.cs

20 lines
293 B
C#
Raw Normal View History

2025-01-03 12:09:23 +00:00
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System;
using Godot;
namespace Rokojori
{
2025-01-08 18:46:17 +00:00
[Tool]
[GlobalClass]
public partial class Selector:Resource
2025-01-03 12:09:23 +00:00
{
2025-01-08 18:46:17 +00:00
public virtual bool Selects( Node node )
{
return true;
}
2025-01-03 12:09:23 +00:00
}
}