TypeIconTarget.cs 527 B

1234567891011121314151617181920212223
  1. // MIT License
  2. // https://gitlab.com/ilnprj
  3. // Copyright (c) 2020 ilnprj
  4. using UnityEngine;
  5. namespace RadarComponents
  6. {
  7. [CreateAssetMenu(fileName = "New TypeRadar Icon", menuName = "RadarComponents/TypeRadarIcon",order = 0)]
  8. public class TypeIconTarget : ScriptableObject
  9. {
  10. [SerializeField]
  11. private string idType = default;
  12. public string IdType => idType;
  13. [SerializeField]
  14. private Sprite iconTarget = default;
  15. public Sprite IconTarget => iconTarget;
  16. }
  17. }