Files
BlenderSharp/BlendFile/DNA/MLoopCol.cs
2025-01-22 02:23:29 +01:00

17 lines
390 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct MLoopCol {
public char r;
public char g;
public char b;
public char a;
public MLoopCol(char r, char g, char b, char a) {
this.r = r;
this.g = g;
this.b = b;
this.a = a;
}
}
}