using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace KairoEngine.GameTools.Selectables
{
///
/// An interface that represents and object that can be selected and has actions.
///
public interface ISelectableObject
{
List actions { get; }
void ExecuteAction(SelectableObjectAction action);
}
}