32 lines
1.0 KiB
C#
32 lines
1.0 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 {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(759, "SoftBody_Shared", 24)]
|
|
public class SoftBody_Shared {
|
|
[DNAFieldAttribute(8, "PointCache", 0, "*pointcache", "PointCache", true, 0)]
|
|
public PointCache pointcache;
|
|
[DNAFieldAttribute(16, "ListBase", 1, "ptcaches", "ListBase", false, 8)]
|
|
public ListBase ptcaches;
|
|
public SoftBody_Shared() {
|
|
this.pointcache = default;
|
|
this.ptcaches = default;
|
|
}
|
|
public SoftBody_Shared(PointCache pointcache, ListBase ptcaches) {
|
|
this.pointcache = pointcache;
|
|
this.ptcaches = ptcaches;
|
|
}
|
|
}
|
|
}
|