//------------------------------------------------------------------------------ // // 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 { public struct MCol { public char a; public char r; public char g; public char b; public MCol(char a, char r, char g, char b) { this.a = a; this.r = r; this.g = g; this.b = b; } } }