Overhaul WithDecoration trait.

This commit is contained in:
Paul Chote
2015-12-13 15:29:08 +00:00
parent cec2c584e6
commit 372bbaf7b6
17 changed files with 133 additions and 165 deletions

View File

@@ -77,9 +77,8 @@ namespace OpenRA.Mods.Common.Traits
public interface IProductionIconOverlay
{
Sprite Sprite();
string Palette();
float Scale();
Sprite Sprite { get; }
string Palette { get; }
float2 Offset(float2 iconSize);
bool IsOverlayActive(ActorInfo ai);
}