29 lines
914 B
C#
29 lines
914 B
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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class SurfaceModifierData_Runtime {
|
|
public Mesh ptr_mesh;
|
|
public BVHTreeFromMesh ptr_bvhtree;
|
|
public int cfra_prev;
|
|
public int verts_num;
|
|
public SurfaceModifierData_Runtime(Mesh ptr_mesh, BVHTreeFromMesh ptr_bvhtree, int cfra_prev, int verts_num) {
|
|
this.ptr_mesh = ptr_mesh;
|
|
this.ptr_bvhtree = ptr_bvhtree;
|
|
this.cfra_prev = cfra_prev;
|
|
this.verts_num = verts_num;
|
|
}
|
|
}
|
|
}
|