using System; using System.Collections; using System.Collections.Generic; using System.Runtime.InteropServices; using UnityEngine; namespace Adobe.Substance { /// /// Struct for handlign sending and receiving preset XML from native to managed code. /// [StructLayout(LayoutKind.Sequential)] internal struct NativePreset { public IntPtr XMLString; } }