StationObscurum/Assets/Adobe/Substance3DForUnity/Runtime/Scripts/MarshalStructs/NativeThumbnail.cs

15 lines
307 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using UnityEngine;
namespace Adobe.Substance
{
[StructLayout(LayoutKind.Sequential)]
internal struct NativeThumbnail
{
public IntPtr Size;
public IntPtr Data;
}
}