Prevent unit requests from stacking during production.

This commit is contained in:
Paul Chote
2018-12-31 21:23:12 +00:00
parent caead311cb
commit f5d788f4fc
3 changed files with 8 additions and 3 deletions

View File

@@ -472,6 +472,7 @@ namespace OpenRA.Mods.Common.Traits
public interface IBotRequestUnitProduction
{
void RequestUnitProduction(IBot bot, string requestedActor);
int RequestedProductionCount(IBot bot, string requestedActor);
}
[RequireExplicitImplementation]