Implement Building/UnitDelays

This commit is contained in:
Mustafa Alperen Seki
2019-01-21 14:41:03 +03:00
committed by reaperrr
parent 2a9721a9f8
commit 2aebb05cd0
3 changed files with 17 additions and 0 deletions

View File

@@ -119,6 +119,9 @@ namespace OpenRA.Mods.Common.Traits
[Desc("What buildings should the AI have a maximum limit to build.")]
public readonly Dictionary<string, int> BuildingLimits = null;
[Desc("When should the AI start building specific buildings.")]
public readonly Dictionary<string, int> BuildingDelays = null;
public override object Create(ActorInitializer init) { return new BaseBuilderBotModule(init.Self, this); }
}