diff --git a/src/core/EnemySpawner.ts b/src/core/EnemySpawner.ts index 8c2fa36..649de37 100644 --- a/src/core/EnemySpawner.ts +++ b/src/core/EnemySpawner.ts @@ -1,8 +1,9 @@ import Game from "../Game"; import { EnemyShipWeak } from "../objects/ships/EnemyShipWeak"; +import { Ship } from "../objects/ships/Ship"; export class EnemySpawner { - enemyShip: EnemyShipWeak; + enemyShip: Ship; constructor() { this.enemyShip = new EnemyShipWeak();