Files
BlenderSharp/BlendFile/DNA/CharInfo.cs
2025-03-11 19:12:04 +01:00

40 lines
1.3 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(208, "CharInfo", 8)]
public class CharInfo {
[DNAFieldAttribute(4, "float", 0, "kern", "float", false, 0)]
public float kern;
[DNAFieldAttribute(2, "short", 1, "mat_nr", "short", false, 4)]
public short mat_nr;
[DNAFieldAttribute(1, "char", 2, "flag", "char", false, 6)]
public char flag;
[DNAArrayAttribute(1, "char", 3, "_pad[1]", "System.Char[]", 1, 7)]
public char[] _pad = new System.Char[1];
public CharInfo() {
this.kern = default;
this.mat_nr = default;
this.flag = default;
this._pad = default;
}
public CharInfo(float kern, short mat_nr, char flag, char[] _pad) {
this.kern = kern;
this.mat_nr = mat_nr;
this.flag = flag;
this._pad = _pad;
}
}
}