tidy up some bizarre namespacing

This commit is contained in:
Chris Forbes
2011-11-04 20:10:28 +13:00
parent cbee1513f3
commit cd155b21c9
10 changed files with 28 additions and 33 deletions

View File

@@ -8,6 +8,7 @@
*/
#endregion
using System.Collections.Generic;
using OpenRA.Mods.RA.Activities;
namespace OpenRA.Mods.RA
@@ -25,4 +26,15 @@ namespace OpenRA.Mods.RA
{
void OnDock(Actor self, Actor harv, DeliverResources dockOrder);
}
public interface ITechTreeElement
{
void PrerequisitesAvailable(string key);
void PrerequisitesUnavailable(string key);
}
public interface ITechTreePrerequisite
{
IEnumerable<string> ProvidesPrerequisites {get;}
}
}