Files
BlenderSharp/BlendFile/DNA/MCol.cs
2025-03-04 18:48:04 +01:00

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 class MCol {
[DNAFieldAttribute(1, "char", 0, "a", "char", false, 0)]
public char a;
[DNAFieldAttribute(1, "char", 1, "r", "char", false, 1)]
public char r;
[DNAFieldAttribute(1, "char", 2, "g", "char", false, 2)]
public char g;
[DNAFieldAttribute(1, "char", 3, "b", "char", 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;
}
}
}