30 lines
899 B
C#
30 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 FPoint {
|
|
[DNAFieldAttribute(0, "float", "vec[2]", 4)]
|
|
public float[] vec = new System.Single[2];
|
|
[DNAFieldAttribute(1, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(2, "char", "_pad[4]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
public FPoint(float[] vec, int flag, char[] _pad) {
|
|
this.vec = vec;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|