IOrderGenerator can produce multiple orders (or none)

This commit is contained in:
Bob
2009-10-09 23:02:54 +13:00
parent f8309b79f4
commit a08bcd9a17
4 changed files with 12 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ namespace OpenRa.Game
{
interface IOrderGenerator
{
Order Order( Game game, int2 xy );
IEnumerable<Order> Order( Game game, int2 xy );
void PrepareOverlay( Game game, int2 xy );
}
}