Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(341, "ViewLayerEngineData", 32)]
public class ViewLayerEngineData {
[DNAFieldAttribute(0, "ViewLayerEngineData", "*next", "ViewLayerEngineData", 8, true, 0)]
public ViewLayerEngineData ptr_next;
[DNAFieldAttribute(1, "ViewLayerEngineData", "*prev", "ViewLayerEngineData", 8, true, 8)]
public ViewLayerEngineData ptr_prev;
[DNAFieldAttribute(2, "DrawEngineType", "*engine_type", "DrawEngineType", 8, true, 16)]
public DrawEngineType ptr_engine_type;
[DNAFieldAttribute(3, "void", "*storage", "void", 8, true, 24)]
public object ptr_storage;
[DNAFieldAttribute(8, "ViewLayerEngineData", 0, "*next", "ViewLayerEngineData", true, 0)]
public ViewLayerEngineData next;
[DNAFieldAttribute(8, "ViewLayerEngineData", 1, "*prev", "ViewLayerEngineData", true, 8)]
public ViewLayerEngineData prev;
[DNAFieldAttribute(8, "DrawEngineType", 2, "*engine_type", "DrawEngineType", true, 16)]
public DrawEngineType engine_type;
[DNAFieldAttribute(8, "void", 3, "*storage", "void", true, 24)]
public object storage;
public ViewLayerEngineData() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_engine_type = default;
this.ptr_storage = default;
this.next = default;
this.prev = default;
this.engine_type = default;
this.storage = default;
}
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;
public ViewLayerEngineData(ViewLayerEngineData next, ViewLayerEngineData prev, DrawEngineType engine_type, object storage) {
this.next = next;
this.prev = prev;
this.engine_type = engine_type;
this.storage = storage;
}
}
}