Files
BlenderSharp/BlendFile/DNA/bUserExtensionRepo.cs
2025-02-18 18:16:57 +01:00

64 lines
2.7 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", "bUserExtensionRepo", 2192)]
public bUserExtensionRepo ptr_next;
[DNAFieldAttribute(1, "bUserExtensionRepo", "*prev", "bUserExtensionRepo", 2192)]
public bUserExtensionRepo ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "char", "module[48]", "System.Char[]", 1)]
public char[] module = new System.Char[48];
[DNAFieldAttribute(4, "char", "*access_token", "char", 1)]
public char ptr_access_token;
[DNAFieldAttribute(5, "char", "custom_dirpath[1024]", "System.Char[]", 1)]
public char[] custom_dirpath = new System.Char[1024];
[DNAFieldAttribute(6, "char", "remote_url[1024]", "System.Char[]", 1)]
public char[] remote_url = new System.Char[1024];
[DNAFieldAttribute(7, "uchar", "flag", "uchar", 1)]
public byte flag;
[DNAFieldAttribute(8, "uchar", "source", "uchar", 1)]
public byte source;
[DNAFieldAttribute(9, "char", "_pad0[6]", "System.Char[]", 1)]
public char[] _pad0 = new System.Char[6];
public bUserExtensionRepo() {
this.ptr_next = default;
this.ptr_prev = default;
this.name = default;
this.module = default;
this.ptr_access_token = default;
this.custom_dirpath = default;
this.remote_url = default;
this.flag = default;
this.source = default;
this._pad0 = default;
}
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;
}
}
}