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 IHighlightableObject { Color GetHighlightColor(); bool ShowOutline(); } }