rokojori_action_library/Runtime/Interactions/iEnablable.cs

15 lines
262 B
C#

using Godot;
using System.Collections;
using System.Collections.Generic;
using Godot.Collections;
using Rokojori.Extensions;
namespace Rokojori
{
public interface iEnablable
{
public bool IsEnabled();
public void SetEnabled( bool enabled );
}
}