a15.0.0f4ž’’’s’8-l'€£ę„hŒĪA,Œ€7€’’’’€¦€²€Õ€ Ž€.€†€Ä€ Ž€.€H€«€’’’’€1€1€’’’’ @Ž€€ Q€j€ H€ź€’’’’ €1€1€’’’’ @Ž€€Q€j€ń€(’’’’€1€1€’’’’€Ž€€€j€’’’’€H€›€’’’’€1€1€’’’’@Ž€€Q€j€y€ € Ž€.€y€< Ž€.€Ž€CH€T’’’’€1€1€’’’’ @Ž€€!Q€j€"H€`’’’’#€1€1€’’’’$@Ž€€%Q€j€&H€l’’’’'€1€1€’’’’(@Ž€€)Q€j€*L€{+PPtrm_FileIDm_PathIDm_DefaultReferencesm_Iconm_ExecutionOrderm_ClassNamem_Namespacem_AssemblyNamem_IsEditorScriptČ0ÅņĆōL.`?^Ł0D7€’’’’€¦€²€Š€¦€¦€¦€#¦€+H€3’’’’€1€1€’’’’@Ž€€ Q€j€ ™€< ¦€H H€Z’’’’ €1€1€’’’’@Ž€€Q€j€Š€g¦€¦€¦€#¦€+v~ € €– €Ÿ €Ø €± €ŗ €Ć €Ģ €Õ €Ž  €ē! €ń" €ū# €$ €% €&Õ€#’’’’'€1€1€’’’’(€Ž€€)H€j€’’’’*€1€1€’’’’+@Ž€€,Q€j€-™€*.Ž€8/AssetMetaDataguiddata[0]data[1]data[2]data[3]pathNametimeCreatedoriginalChangesetoriginalNameoriginalParentHash128originalDigestbytes[0]bytes[1]bytes[2]bytes[3]bytes[4]bytes[5]bytes[6]bytes[7]bytes[8]bytes[9]bytes[10]bytes[11]bytes[12]bytes[13]bytes[14]bytes[15]labelsassetStoreReflicenseType z{ļ@īČć5^(H'7€’’’’€¦€²€ Õ€ Ž€#.€,†€Ä€ Ž€#.€,H€«€’’’’€1€1€’’’’ @Ž€€ Q€j€ Õ€5’’’’ €1€1€’’’’ €Ž€€€j€’’’’€H€›€’’’’€1€1€’’’’@Ž€€Q€j€y€ € Ž€#.€, €I@¾€X @Ž€#.€,H€]’’’’€1€1€’’’’@Ž€€Q€j€H€h’’’’€1€1€’’’’ @Ž€€!Q€j€"H€z’’’’#€1€1€’’’’$@Ž€€%Q€j€&MonoImporterPPtrm_FileIDm_PathIDm_DefaultReferencesexecutionOrdericonm_UserDatam_AssetBundleNamem_AssetBundleVariant˜’’˜@  ’’ąyÆŲYss’’øĢ ĄØmHd„er¤iā‘>Assets/LeapMotion+OVR/SystemWipe/SystemWipeRecognizerNative.csSystemWipeRecognizerNative»using System; using System.Runtime.InteropServices; namespace Leap.Util { public enum Direction : int { Invalid, Up, Down }; public enum Status : int { Invalid, ErrorCannotAccessImages, Idle, SwipeBegin, SwipeUpdate, SwipeComplete, SwipeAbort, InfoQueueEmpty }; [StructLayout(LayoutKind.Sequential)] public struct SystemWipeInfo { public Direction Direction; public Status Status; public float Progress; } public class SystemWipeRecognizerNative { # if UNITY_STANDALONE_OSX const CallingConvention LeapCallingConvention = CallingConvention.Cdecl; # else const CallingConvention LeapCallingConvention = CallingConvention.StdCall; # endif [UnmanagedFunctionPointer(LeapCallingConvention)] public delegate void CallbackSystemWipeInfoDelegate(SystemWipeInfo systemWipeInfo); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern void SetSystemWipeRecognizerCallback(IntPtr property); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern void EnableSystemWipeRecognizer(); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern void DisableSystemWipeRecognizer(); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern bool WasLastImageAccessOk(); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern int GetFrameCount(); [DllImport("SystemWipeRecognizerDll", CallingConvention = LeapCallingConvention)] public static extern SystemWipeInfo GetNextSystemWipeInfo(); } } SystemWipeRecognizerNative Leap.UtilAssembly-CSharp.dll