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

20 lines
358 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]
2025-01-21 20:58:56 +00:00
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/Selector.svg")]
2025-01-08 18:46:17 +00:00
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
}
}