Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class IpoDriver {
[DNAFieldAttribute(0, "Object", "*ob", 1160)]
public Object ptr_ob;
[DNAFieldAttribute(1, "short", "blocktype", 2)]
public short blocktype;
[DNAFieldAttribute(2, "short", "adrcode", 2)]
public short adrcode;
[DNAFieldAttribute(3, "short", "type", 2)]
public short type;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "char", "name[128]", 1)]
public char[] name = new System.Char[128];
public IpoDriver(Object ptr_ob, short blocktype, short adrcode, short type, short flag, char[] name) {
this.ptr_ob = ptr_ob;