Add queued argument to CanIssueDeployOrder.

This commit is contained in:
Paul Chote
2020-02-20 20:51:13 +00:00
committed by abcdefg30
parent 2016ab105e
commit 84419e4259
9 changed files with 17 additions and 10 deletions

View File

@@ -412,7 +412,7 @@ namespace OpenRA.Mods.Common.Traits
public interface IIssueDeployOrder
{
Order IssueDeployOrder(Actor self, bool queued);
bool CanIssueDeployOrder(Actor self);
bool CanIssueDeployOrder(Actor self, bool queued);
}
public enum ActorPreviewType { PlaceBuilding, ColorPicker, MapEditorSidebar }