Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

30
BlendFile/DNA/KS_Path.cs Normal file
View File

@@ -0,0 +1,30 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class KS_Path {
public KS_Path ptr_next;
public KS_Path ptr_prev;
public ID ptr_id;
public char[] group = new System.Char[64];
public int idtype;
public short groupmode;
public short flag;
public char ptr_rna_path;
public int array_index;
public short keyingflag;
public short keyingoverride;
public KS_Path(KS_Path ptr_next, KS_Path ptr_prev, ID ptr_id, char[] group, int idtype, short groupmode, short flag, char ptr_rna_path, int array_index, short keyingflag, short keyingoverride) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_id = ptr_id;
this.group = group;
this.idtype = idtype;
this.groupmode = groupmode;
this.flag = flag;
this.ptr_rna_path = ptr_rna_path;
this.array_index = array_index;
this.keyingflag = keyingflag;
this.keyingoverride = keyingoverride;
}
}
}