//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ 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; } } }