updated generated files
This commit is contained in:
@@ -68,6 +68,15 @@ namespace BlendFile {
|
||||
this._ArrayLenght = value;
|
||||
}
|
||||
}
|
||||
private bool _IsPointer;
|
||||
public virtual bool IsPointer {
|
||||
get {
|
||||
return this._IsPointer;
|
||||
}
|
||||
set {
|
||||
this._IsPointer = value;
|
||||
}
|
||||
}
|
||||
private int _MemoryOffset;
|
||||
public virtual int MemoryOffset {
|
||||
get {
|
||||
@@ -77,7 +86,7 @@ namespace BlendFile {
|
||||
this._MemoryOffset = value;
|
||||
}
|
||||
}
|
||||
public DNAArrayAttribute(int Size, string OriginalType, int OriginalIndex, string OriginalName, string UnderlyingType, int ArrayLenght, int MemoryOffset) :
|
||||
public DNAArrayAttribute(int Size, string OriginalType, int OriginalIndex, string OriginalName, string UnderlyingType, int ArrayLenght, bool IsPointer, int MemoryOffset) :
|
||||
base(OriginalIndex, OriginalName) {
|
||||
this._Size = Size;
|
||||
this._OriginalType = OriginalType;
|
||||
@@ -85,6 +94,7 @@ namespace BlendFile {
|
||||
this._OriginalName = OriginalName;
|
||||
this._UnderlyingType = UnderlyingType;
|
||||
this._ArrayLenght = ArrayLenght;
|
||||
this._IsPointer = IsPointer;
|
||||
this._MemoryOffset = MemoryOffset;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user