34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class CustomData {
|
|
public CustomDataLayer ptr_layers;
|
|
public int[] typemap = new System.Int32[53];
|
|
public int totlayer;
|
|
public int maxlayer;
|
|
public int totsize;
|
|
public BLI_mempool ptr_pool;
|
|
public CustomDataExternal ptr_external;
|
|
public CustomData(CustomDataLayer ptr_layers, int[] typemap, int totlayer, int maxlayer, int totsize, BLI_mempool ptr_pool, CustomDataExternal ptr_external) {
|
|
this.ptr_layers = ptr_layers;
|
|
this.typemap = typemap;
|
|
this.totlayer = totlayer;
|
|
this.maxlayer = maxlayer;
|
|
this.totsize = totsize;
|
|
this.ptr_pool = ptr_pool;
|
|
this.ptr_external = ptr_external;
|
|
}
|
|
}
|
|
}
|