Files
Bachelor-Arbeit-Thomas-Wichert/Assets/Oculus/Platform/Scripts/Models/HttpTransferUpdate.cs
2025-07-21 09:11:14 +02:00

28 lines
766 B
C#

namespace Oculus.Platform.Models
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Oculus.Platform.Models;
using UnityEngine;
public class HttpTransferUpdate
{
public readonly UInt64 ID;
public readonly byte[] Payload;
public readonly bool IsCompleted;
public HttpTransferUpdate(IntPtr o)
{
ID = CAPI.ovr_HttpTransferUpdate_GetID(o);
IsCompleted = CAPI.ovr_HttpTransferUpdate_IsCompleted(o);
long size = (long)CAPI.ovr_HttpTransferUpdate_GetSize(o);
Payload = new byte[size];
Marshal.Copy(CAPI.ovr_Packet_GetBytes(o), Payload, 0, (int)size);
}
}
}