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,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bUserExtensionRepo {
[DNAFieldAttribute(0, "bUserExtensionRepo", "*next", 2192)]
public bUserExtensionRepo ptr_next;
[DNAFieldAttribute(1, "bUserExtensionRepo", "*prev", 2192)]
public bUserExtensionRepo ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "char", "module[48]", 1)]
public char[] module = new System.Char[48];
[DNAFieldAttribute(4, "char", "*access_token", 1)]
public char ptr_access_token;
[DNAFieldAttribute(5, "char", "custom_dirpath[1024]", 1)]
public char[] custom_dirpath = new System.Char[1024];
[DNAFieldAttribute(6, "char", "remote_url[1024]", 1)]
public char[] remote_url = new System.Char[1024];
[DNAFieldAttribute(7, "uchar", "flag", 1)]
public byte flag;
[DNAFieldAttribute(8, "uchar", "source", 1)]
public byte source;
[DNAFieldAttribute(9, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
public bUserExtensionRepo(bUserExtensionRepo ptr_next, bUserExtensionRepo ptr_prev, char[] name, char[] module, char ptr_access_token, char[] custom_dirpath, char[] remote_url, byte flag, byte source, char[] _pad0) {
this.ptr_next = ptr_next;