(gecko) make production queue content accessible to mod code

This commit is contained in:
Chris Forbes
2010-11-02 13:36:18 +13:00
parent 5e3fce6820
commit e32e060d37

View File

@@ -32,10 +32,10 @@ namespace OpenRA.Mods.RA
// TODO: sync these // TODO: sync these
// A list of things we are currently building // A list of things we are currently building
List<ProductionItem> Queue = new List<ProductionItem>(); public List<ProductionItem> Queue = new List<ProductionItem>();
// A list of things we could possibly build, even if our race doesn't normally get it // A list of things we could possibly build, even if our race doesn't normally get it
Dictionary<ActorInfo, ProductionState> Produceable = new Dictionary<ActorInfo, ProductionState>(); public Dictionary<ActorInfo, ProductionState> Produceable = new Dictionary<ActorInfo, ProductionState>();
public ProductionQueue( Actor self, Actor playerActor, ProductionQueueInfo info ) public ProductionQueue( Actor self, Actor playerActor, ProductionQueueInfo info )
{ {