Remove Minimap from world

This commit is contained in:
Paul Chote
2010-07-21 19:48:43 +12:00
parent 3a7bec1eef
commit d69267f71c
2 changed files with 13 additions and 11 deletions

View File

@@ -55,7 +55,6 @@ namespace OpenRA
public GlobalDefaultsInfo Defaults { get {return WorldActor.Info.Traits.Get<GlobalDefaultsInfo>();}}
public readonly WorldRenderer WorldRenderer;
internal readonly Minimap Minimap;
public World(Manifest manifest, Map map)
{
@@ -104,9 +103,6 @@ namespace OpenRA
PathFinder = new PathFinder(this);
Timer.Time( "hooks, pathing: {0}" );
Minimap = new Minimap(this);
Timer.Time( "minimap: {0}" );
Timer.Time( "----end World.ctor" );
}