ConceptCreator/src/app/editor/gamesystem-editor/gamesystem-editor.component.html
Sebastian Böckelmann cfc23efb71
All checks were successful
E2E Testing / test (push) Successful in 1m36s
Introduce symmetric flag in Gamesystem Properties
2024-04-19 15:52:52 +02:00

7 lines
667 B
HTML

<div *ngIf="isGamesystemTemplate()">
<mat-checkbox [(ngModel)]="convertGamesystemToTemplate(gamesystem)!.symmetric">Gamesystem is symmetric template</mat-checkbox>
</div>
<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>