33 lines
899 B
C#
33 lines
899 B
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;
|
|
|
|
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(char a, char r, char g, char b) {
|
|
this.a = a;
|
|
this.r = r;
|
|
this.g = g;
|
|
this.b = b;
|
|
}
|
|
}
|
|
}
|