Files
BlenderSharp/BlendFile/DNA/RigidBodyWorld_Shared.cs
2025-03-04 18:48:04 +01:00

36 lines
1.3 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(794, "RigidBodyWorld_Shared", 32)]
public class RigidBodyWorld_Shared {
[DNAFieldAttribute(8, "PointCache", 0, "*pointcache", "PointCache", true, 0)]
public PointCache pointcache;
[DNAFieldAttribute(16, "ListBase", 1, "ptcaches", "ListBase", false, 8)]
public ListBase ptcaches;
[DNAFieldAttribute(8, "void", 2, "*physics_world", "void", true, 24)]
public object physics_world;
public RigidBodyWorld_Shared() {
this.pointcache = default;
this.ptcaches = default;
this.physics_world = default;
}
public RigidBodyWorld_Shared(PointCache pointcache, ListBase ptcaches, object physics_world) {
this.pointcache = pointcache;
this.ptcaches = ptcaches;
this.physics_world = physics_world;
}
}
}