regenerated files
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user