Files
BlenderSharp/BlendFile/DNA/ViewLayerEngineData.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

28 lines
955 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 System;
namespace BlendFile.DNA {
public class ViewLayerEngineData {
public ViewLayerEngineData ptr_next;
public ViewLayerEngineData ptr_prev;
public DrawEngineType ptr_engine_type;
public object ptr_storage;
public ViewLayerEngineData(ViewLayerEngineData ptr_next, ViewLayerEngineData ptr_prev, DrawEngineType ptr_engine_type, object ptr_storage) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_engine_type = ptr_engine_type;
this.ptr_storage = ptr_storage;
}
}
}