IHighlightableObject.cs 369 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace KairoEngine.GameTools.Selectables
  5. {
  6. /// <summary>
  7. /// An interface that represents and object that can be selected and has actions.
  8. /// </summary>
  9. public interface IHighlightableObject
  10. {
  11. Color GetHighlightColor();
  12. bool ShowOutline();
  13. }
  14. }