SelectionView.cs 327 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace KairoEngine.GameTools.Selectables
  5. {
  6. /// <summary>
  7. /// The SelectionView is a UI component that shows the current selected object or objects.
  8. /// </summary>
  9. public class SelectionView : MonoBehaviour
  10. {
  11. }
  12. }