NRVersionInfo.cs 1.0 KB

12345678910111213141516171819202122
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal
  10. {
  11. /// <summary> Holds information about Nreal SDK version info. </summary>
  12. public class NRVersionInfo
  13. {
  14. /// <summary> Gets the version. </summary>
  15. /// <returns> The version. </returns>
  16. public static string GetVersion()
  17. {
  18. return NativeVersion.GetVersion();
  19. }
  20. }
  21. }