refactor(blackjack): update import paths for modules

This commit is contained in:
Jan-Marlon Leibl 2025-04-02 09:51:59 +02:00
commit d400986c34
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
import { CommonModule } from '@angular/common';
import { GameState } from '../../enum/gameState';
import { GameState } from '@blackjack/enum/gameState';
import { Card } from '@blackjack/models/blackjack.model';
import { GameControlsService } from '@blackjack/services/game-controls.service';