Files
BlenderSharp/BlendFile/DNA/bUserExtensionRepo.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

52 lines
2.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(1006, "bUserExtensionRepo")]
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;
this.ptr_prev = ptr_prev;
this.name = name;
this.module = module;
this.ptr_access_token = ptr_access_token;
this.custom_dirpath = custom_dirpath;
this.remote_url = remote_url;
this.flag = flag;
this.source = source;
this._pad0 = _pad0;
}
}
}