2
0
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:
Jan
2019-12-24 12:41:27 +01:00
parent 9e10cffdce
commit 33ec343460
8 changed files with 118 additions and 14 deletions

View File

@@ -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;
}
}
}