Draw shellmap actors

This commit is contained in:
Paul Chote
2010-04-09 21:49:30 +12:00
parent f116455ef6
commit 3bb69c448d
6 changed files with 36 additions and 7 deletions

View File

@@ -155,7 +155,10 @@ namespace OpenRA
frameEndActions = new List<Action<World>>();
foreach (var a in acts) a(this);
Minimap.Update();
// TODO: This doesn't even belong here -> move into a widget
if (LocalPlayer != null)
Minimap.Update();
foreach (var player in players.Values)
player.Tick();
}