clean project

This commit is contained in:
Helar Jaadla
2022-03-07 17:52:41 +02:00
parent a174b45bd2
commit cbeb10ec35
5100 changed files with 837159 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using System;
using System.Collections;
using Oculus.Platform.Models;
using System.Collections.Generic;
using UnityEngine;
public class InviteOptions {
public InviteOptions() {
Handle = CAPI.ovr_InviteOptions_Create();
}
/// Passing in these users will add them to the invitable users list
public void AddSuggestedUser(UInt64 userID) {
CAPI.ovr_InviteOptions_AddSuggestedUser(Handle, userID);
}
public void ClearSuggestedUsers() {
CAPI.ovr_InviteOptions_ClearSuggestedUsers(Handle);
}
/// For passing to native C
public static explicit operator IntPtr(InviteOptions options) {
return options != null ? options.Handle : IntPtr.Zero;
}
~InviteOptions() {
CAPI.ovr_InviteOptions_Destroy(Handle);
}
IntPtr Handle;
}
}