// MIT License // https://gitlab.com/ilnprj // Copyright (c) 2020 ilnprj using UnityEngine; namespace RadarComponents { /// /// Abstract class for target display extensions. /// public abstract class AbstractExtensionTarget : MonoBehaviour { /// /// This method must be called in the BaseTargetView implementation /// public abstract void UpdateExtensionView(Transform player, ITarget inputTarget); } }