20 lines
332 B
C#
20 lines
332 B
C#
|
|
using System.Diagnostics;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
using Godot;
|
|
|
|
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/Selector.svg")]
|
|
public partial class Selectable:Node
|
|
{
|
|
[Export]
|
|
public SelectorFlag[] flags;
|
|
|
|
|
|
}
|
|
} |