Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -12,80 +12,79 @@ using System;
namespace BlendFile {
[AttributeUsage(AttributeTargets.Field)]
[AttributeUsageAttribute(AttributeTargets.Field)]
public class DNAFieldAttribute : System.Attribute {
private int _size;
private int _Size;
public virtual int Size {
get {
return this._size;
return this._Size;
}
set {
this._size = value;
this._Size = value;
}
}
private string _originalType;
private string _OriginalType;
public virtual string OriginalType {
get {
return this._originalType;
return this._OriginalType;
}
set {
this._originalType = value;
this._OriginalType = value;
}
}
private string _originalName;
public virtual string OriginalName {
get {
return this._originalName;
}
set {
this._originalName = value;
}
}
private int _originalIndex;
private int _OriginalIndex;
public virtual int OriginalIndex {
get {
return this._originalIndex;
return this._OriginalIndex;
}
set {
this._originalIndex = value;
this._OriginalIndex = value;
}
}
private string _OriginalName;
public virtual string OriginalName {
get {
return this._OriginalName;
}
set {
this._OriginalName = value;
}
}
private string _UnderlyingType;
public virtual string UnderlyingType {
get {
return _originalType;
return this._UnderlyingType;
}
set {
this._originalType = value;
this._UnderlyingType = value;
}
}
private bool _isPointer;
private bool _IsPointer;
public virtual bool IsPointer {
get {
return _isPointer;
return this._IsPointer;
}
set {
this._isPointer = value;
this._IsPointer = value;
}
}
private int _memoryOffset;
private int _MemoryOffset;
public virtual int MemoryOffset {
get {
return 0;
return this._MemoryOffset;
}
set {
this._memoryOffset = value;
this._MemoryOffset = value;
}
}
public DNAFieldAttribute(int originalIndex, string originalType, string originalName, string underlyingType, int size, bool isPointer, int memoryOffset) {
this.OriginalIndex = originalIndex;
this.OriginalType = originalType;
this.OriginalName = originalName;
this.OriginalType = underlyingType;
this.Size = size;
this.IsPointer = isPointer;
this.MemoryOffset = memoryOffset;
public DNAFieldAttribute(int Size, string OriginalType, int OriginalIndex, string OriginalName, string UnderlyingType, bool IsPointer, int MemoryOffset) {
this._Size = Size;
this._OriginalType = OriginalType;
this._OriginalIndex = OriginalIndex;
this._OriginalName = OriginalName;
this._UnderlyingType = UnderlyingType;
this._IsPointer = IsPointer;
this._MemoryOffset = MemoryOffset;
}
}
}