private static void* __CopyValue(Allocator.__Internal native) { var ret = Marshal.AllocHGlobal(0); *(Allocator.__Internal*) ret = native; return ret.ToPointer(); }
private Allocator(Allocator.__Internal native, bool skipVTables = false) : this(__CopyValue(native), skipVTables) { __ownsNativeInstance = true; NativeToManagedMap[__Instance] = this; }
public static Allocator __CreateInstance(Allocator.__Internal native, bool skipVTables = false) { return new Allocator(native, skipVTables); }