mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-06 16:57:25 +00:00
ZoneCodeGenerator: Add possibility to specify a custom array count to signalize how many entries of a static array should be loaded
This commit is contained in:
@@ -7,11 +7,13 @@ namespace ZoneCodeGenerator.Domain
|
||||
public int ArraySize { get; }
|
||||
|
||||
public IEvaluation DynamicSize { get; set; }
|
||||
public IEvaluation DynamicCount { get; set; }
|
||||
|
||||
public ReferenceTypeArray(int arraySize)
|
||||
{
|
||||
ArraySize = arraySize;
|
||||
DynamicSize = null;
|
||||
DynamicCount = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user