42 lines
1.6 KiB
C#
42 lines
1.6 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class bUserExtensionRepo {
|
|
public bUserExtensionRepo ptr_next;
|
|
public bUserExtensionRepo ptr_prev;
|
|
public char[] name = new System.Char[64];
|
|
public char[] module = new System.Char[48];
|
|
public char ptr_access_token;
|
|
public char[] custom_dirpath = new System.Char[1024];
|
|
public char[] remote_url = new System.Char[1024];
|
|
public uchar flag;
|
|
public uchar source;
|
|
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, uchar flag, uchar 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;
|
|
}
|
|
}
|
|
}
|