Add SupportPowerPaletteOrder to SupportPowerInfo

This commit is contained in:
Ivaylo Draganov
2019-06-07 01:46:42 +03:00
committed by abcdefg30
parent a8b7fcaf87
commit a85b634655
3 changed files with 8 additions and 2 deletions

View File

@@ -106,6 +106,9 @@ namespace OpenRA.Mods.Common.Traits
public readonly string OrderName;
[Desc("Sort order for the support power palette. Smaller numbers are presented earlier.")]
public readonly int SupportPowerPaletteOrder = 9999;
public SupportPowerInfo() { OrderName = GetType().Name + "Order"; }
}