Files
BlenderSharp/BlendFile/DNA/EditingRuntime.cs

30 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class EditingRuntime {
public SequenceLookup ptr_sequence_lookup;
public MediaPresence ptr_media_presence;
public ThumbnailCache ptr_thumbnail_cache;
public object ptr__pad;
public EditingRuntime(SequenceLookup ptr_sequence_lookup, MediaPresence ptr_media_presence, ThumbnailCache ptr_thumbnail_cache, object ptr__pad) {
this.ptr_sequence_lookup = ptr_sequence_lookup;
this.ptr_media_presence = ptr_media_presence;
this.ptr_thumbnail_cache = ptr_thumbnail_cache;
this.ptr__pad = ptr__pad;
}
}
}