ConceptCreator/src/app/editor/gamesystem-editor/gamesystem-editor.component.html
Sebastian Böckelmann ebd3a54120
All checks were successful
E2E Testing / test (push) Successful in 1m33s
Display Characterspecific ProductStates
2024-04-14 11:55:06 +02:00

4 lines
494 B
HTML

<app-simple-gamesystem-editor *ngIf="isSimpleGamesystem()" [templateElement]="templateElement" [simpleGamesystem]="convertGamesystemToSimpleGamesystem()" [scriptAccunts]="scriptAccounts"></app-simple-gamesystem-editor>
<app-product-gamesystem-editor *ngIf="!isSimpleGamesystem()" [templateElement]="templateElement" [gamesystem]="convertGamesystemToProductGamesystem()"
(onOpenGamesystemEditor)="onOpenGamesystemEditor($event)"></app-product-gamesystem-editor>