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(1028, "View3D_Runtime", 24)]
public class View3D_Runtime {
[DNAFieldAttribute(0, "void", "*properties_storage", "void", 8, true, 0)]
public object ptr_properties_storage;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 8)]
[DNAFieldAttribute(8, "void", 0, "*properties_storage", "void", true, 0)]
public object properties_storage;
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 8)]
public int flag;
[DNAFieldAttribute(3, "char", "_pad1[4]", "System.Char[]", 4, false, 12)]
[DNAFieldAttribute(4, "char", 3, "_pad1[4]", "System.Char[]", false, 12)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(4, "SceneStats", "*local_stats", "SceneStats", 8, true, 16)]
public SceneStats ptr_local_stats;
[DNAFieldAttribute(8, "SceneStats", 4, "*local_stats", "SceneStats", true, 16)]
public SceneStats local_stats;
public View3D_Runtime() {
this.ptr_properties_storage = default;
this.properties_storage = default;
this.flag = default;
this._pad1 = default;
this.ptr_local_stats = default;
this.local_stats = default;
}
public View3D_Runtime(object ptr_properties_storage, int flag, char[] _pad1, SceneStats ptr_local_stats) {
this.ptr_properties_storage = ptr_properties_storage;
public View3D_Runtime(object properties_storage, int flag, char[] _pad1, SceneStats local_stats) {
this.properties_storage = properties_storage;
this.flag = flag;
this._pad1 = _pad1;
this.ptr_local_stats = ptr_local_stats;
this.local_stats = local_stats;
}
}
}