Regenerated all the files
This commit is contained in:
60
BlendFile/DNAFieldAttribute.cs
Normal file
60
BlendFile/DNAFieldAttribute.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 {
|
||||
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class DNAFieldAttribute : System.Attribute {
|
||||
private int _size;
|
||||
public virtual int Size {
|
||||
get {
|
||||
return this._size;
|
||||
}
|
||||
set {
|
||||
this._size = value;
|
||||
}
|
||||
}
|
||||
private string _originalType;
|
||||
public virtual string OriginalType {
|
||||
get {
|
||||
return this._originalType;
|
||||
}
|
||||
set {
|
||||
this._originalType = value;
|
||||
}
|
||||
}
|
||||
private string _originalName;
|
||||
public virtual string OriginalName {
|
||||
get {
|
||||
return this._originalName;
|
||||
}
|
||||
set {
|
||||
this._originalName = value;
|
||||
}
|
||||
}
|
||||
private int _originalIndex;
|
||||
public virtual int OriginalIndex {
|
||||
get {
|
||||
return this._originalIndex;
|
||||
}
|
||||
set {
|
||||
this._originalIndex = value;
|
||||
}
|
||||
}
|
||||
public DNAFieldAttribute(int originalIndex, string originalType, string originalName, int size) {
|
||||
this.OriginalIndex = originalIndex;
|
||||
this.OriginalType = originalType;
|
||||
this.OriginalName = originalName;
|
||||
this.Size = size;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user