regenerated files

This commit is contained in:
mm00
2025-02-19 17:07:50 +01:00
parent f327f18b57
commit 380949122c
935 changed files with 9595 additions and 9586 deletions

View File

@@ -51,20 +51,29 @@ namespace BlendFile {
}
}
public virtual string UnderlyingType {
get
{
get {
return _originalType;
}
set {
this._originalType = value;
}
}
public DNAFieldAttribute(int originalIndex, string originalType, string originalName, string underlyingType, int size) {
private bool _isPointer;
public virtual bool IsPointer {
get {
return _isPointer;
}
set {
this._isPointer = value;
}
}
public DNAFieldAttribute(int originalIndex, string originalType, string originalName, string underlyingType, int size, bool isPointer) {
this.OriginalIndex = originalIndex;
this.OriginalType = originalType;
this.OriginalName = originalName;
this.OriginalType = underlyingType;
this.Size = size;
this.IsPointer = isPointer;
}
}
}