Veteran unit production & unlocking through spies.

This commit is contained in:
unknown
2015-05-21 20:59:03 +01:00
committed by Matija Hustić
parent ff2a5ef68b
commit 206ed8ebb8
13 changed files with 257 additions and 10 deletions

View File

@@ -73,6 +73,15 @@ namespace OpenRA.Mods.Common.Traits
void PrerequisitesItemVisible(string key);
}
public interface IProductionIconOverlay
{
Sprite Sprite();
string Palette();
float Scale();
float2 Offset(float2 iconSize);
bool IsOverlayActive(ActorInfo ai);
}
public interface INotifyTransform { void BeforeTransform(Actor self); void OnTransform(Actor self); void AfterTransform(Actor toActor); }
public interface IAcceptResources