Assignment for RMIT Mixed Reality in 2020
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.

33 lines
785 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform
  3. {
  4. using System;
  5. using System.Collections;
  6. using Oculus.Platform.Models;
  7. using System.Collections.Generic;
  8. using UnityEngine;
  9. public class ApplicationOptions {
  10. public ApplicationOptions() {
  11. Handle = CAPI.ovr_ApplicationOptions_Create();
  12. }
  13. public void SetDeeplinkMessage(string value) {
  14. CAPI.ovr_ApplicationOptions_SetDeeplinkMessage(Handle, value);
  15. }
  16. // For passing to native C
  17. public static explicit operator IntPtr(ApplicationOptions options) {
  18. return options != null ? options.Handle : IntPtr.Zero;
  19. }
  20. ~ApplicationOptions() {
  21. CAPI.ovr_ApplicationOptions_Destroy(Handle);
  22. }
  23. IntPtr Handle;
  24. }
  25. }