Add indication of what players are building

This commit is contained in:
Scott_NZ
2012-11-20 23:55:00 +13:00
parent 4bc04769ec
commit 83e1855919
5 changed files with 152 additions and 4 deletions

View File

@@ -34,6 +34,11 @@ namespace OpenRA.Widgets
Game.Renderer.SpriteRenderer.DrawSprite(s,pos, wr, "chrome");
}
public static void DrawSHP(Sprite s, float2 pos, WorldRenderer wr, float2 size)
{
Game.Renderer.SpriteRenderer.DrawSprite(s, pos, wr, "chrome", size);
}
public static void DrawPanel(string collection, Rectangle Bounds)
{
DrawPanelPartial(collection, Bounds, PanelSides.All);