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/Scripts/ARSession/IARSessionManager.cs

16 lines
402 B
C#
Raw Normal View History

using System;
namespace ARLocation.Session
{
public interface IARSessionManager
{
bool DebugMode { get; set; }
void Reset(Action callback);
string GetSessionInfoString();
string GetProviderString();
void OnARTrackingStarted(Action callback);
void OnARTrackingRestored(Action callback);
void OnARTrackingLost(Action callback);
}
}