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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(313, "GreasePencilLayerFramesMapStorage", 24)]
public class GreasePencilLayerFramesMapStorage {
[DNAFieldAttribute(0, "int", "*keys", "int", 8, true, 0)]
public int ptr_keys;
[DNAFieldAttribute(1, "GreasePencilFrame", "*values", "GreasePencilFrame", 8, true, 8)]
public GreasePencilFrame ptr_values;
[DNAFieldAttribute(2, "int", "size", "int", 4, false, 16)]
[DNAFieldAttribute(8, "int", 0, "*keys", "int", true, 0)]
public int keys;
[DNAFieldAttribute(8, "GreasePencilFrame", 1, "*values", "GreasePencilFrame", true, 8)]
public GreasePencilFrame values;
[DNAFieldAttribute(4, "int", 2, "size", "int", false, 16)]
public int size;
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 20)]
public int flag;
public GreasePencilLayerFramesMapStorage() {
this.ptr_keys = default;
this.ptr_values = default;
this.keys = default;
this.values = default;
this.size = default;
this.flag = default;
}
public GreasePencilLayerFramesMapStorage(int ptr_keys, GreasePencilFrame ptr_values, int size, int flag) {
this.ptr_keys = ptr_keys;
this.ptr_values = ptr_values;
public GreasePencilLayerFramesMapStorage(int keys, GreasePencilFrame values, int size, int flag) {
this.keys = keys;
this.values = values;
this.size = size;
this.flag = flag;
}