2025-01-18 12:49:14 +00:00
|
|
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System;
|
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
[Tool]
|
2025-10-24 11:38:51 +00:00
|
|
|
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/Selector.svg")]
|
2025-01-18 12:49:14 +00:00
|
|
|
public partial class SelectorFlag:Resource
|
|
|
|
|
{
|
2025-06-19 17:22:25 +00:00
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return HierarchyName.Of( this );
|
|
|
|
|
}
|
2025-01-18 12:49:14 +00:00
|
|
|
}
|
|
|
|
|
}
|