Files
BlenderSharp/BlendFile/DNA/MCol.cs

40 lines
1.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(423, "MCol", 4)]
public struct MCol {
[DNAFieldAttribute(0, "char", "a", "char", 1, false, 0)]
public char a;
[DNAFieldAttribute(1, "char", "r", "char", 1, false, 1)]
public char r;
[DNAFieldAttribute(2, "char", "g", "char", 1, false, 2)]
public char g;
[DNAFieldAttribute(3, "char", "b", "char", 1, false, 3)]
public char b;
public MCol() {
this.a = default;
this.r = default;
this.g = default;
this.b = default;
}
public MCol(char a, char r, char g, char b) {
this.a = a;
this.r = r;
this.g = g;
this.b = b;
}
}
}