This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Assets/ARLocation/Mapbox Routes/Scripts/AbstractOnScreenTargetIndic...

11 lines
266 B
C#
Raw Normal View History

using UnityEngine;
namespace ARLocation.MapboxRoutes
{
public abstract class AbstractOnScreenTargetIndicator : MonoBehaviour
{
public abstract void Init(MapboxRoute route);
public abstract void OnRouteUpdate(SignPostEventArgs args);
}
}