//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(423, "MCol")] public struct MCol { [DNAFieldAttribute(0, "char", "a", 1)] public char a; [DNAFieldAttribute(1, "char", "r", 1)] public char r; [DNAFieldAttribute(2, "char", "g", 1)] public char g; [DNAFieldAttribute(3, "char", "b", 1)] 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; } } }