add support for aux. bars in selection

This commit is contained in:
Chris Forbes
2011-03-02 22:16:47 +13:00
parent 338cff3c45
commit 036800531c
2 changed files with 33 additions and 6 deletions

View File

@@ -126,7 +126,8 @@ namespace OpenRA.Traits
public interface IPalette { void InitPalette( WorldRenderer wr ); }
public interface IPaletteModifier { void AdjustPalette(Dictionary<string,Palette> b); }
public interface IPips { IEnumerable<PipType> GetPips(Actor self); }
public interface ITags { IEnumerable<TagType> GetTags(); }
public interface ITags { IEnumerable<TagType> GetTags(); }
public interface ISelectionBar { float GetValue(); Color GetColor(); }
public interface ITeleportable : IHasLocation /* crap name! */
{