make maximum and minimum rows configurable

This commit is contained in:
Matthias Mailänder
2015-02-08 10:13:28 +01:00
parent 3be3700722
commit b0f986887c
3 changed files with 9 additions and 3 deletions

View File

@@ -56,6 +56,9 @@ namespace OpenRA.Mods.Common.Widgets
public readonly World World;
readonly OrderManager orderManager;
public int MinimumRows = 4;
public int MaximumRows = int.MaxValue;
public int IconRowOffset = 0;
public int MaxIconRowOffset = int.MaxValue;