SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
402 B

4 years ago
  1. using System;
  2. namespace ARLocation.Session
  3. {
  4. public interface IARSessionManager
  5. {
  6. bool DebugMode { get; set; }
  7. void Reset(Action callback);
  8. string GetSessionInfoString();
  9. string GetProviderString();
  10. void OnARTrackingStarted(Action callback);
  11. void OnARTrackingRestored(Action callback);
  12. void OnARTrackingLost(Action callback);
  13. }
  14. }