diff --git a/GoldWars/GoldWars/Map/MapFactory.swift b/GoldWars/GoldWars/Map/MapFactory.swift index 9234670..ab4321a 100644 --- a/GoldWars/GoldWars/Map/MapFactory.swift +++ b/GoldWars/GoldWars/Map/MapFactory.swift @@ -11,17 +11,11 @@ import SpriteKit class MapFactory { - var entityManager: EntityManager! - var scene: SKScene! - var twoPlayerMaps: [MapProtocol]! var threePlayerMaps: [MapProtocol]! var fourPlayerMaps: [MapProtocol]! init(scene: SKScene, entityManager: EntityManager) { - self.entityManager = entityManager - self.scene = scene - self.twoPlayerMaps = [ TwoPlayerDefaultTestMap(scene: scene, entityManager: entityManager) ]