From 2a01f45bf62c3a2f0de2688a5cce4297bd78df3b Mon Sep 17 00:00:00 2001 From: sebastian Date: Sun, 2 Jun 2024 19:43:10 +0200 Subject: [PATCH] Move scriptaccount-action-editor.component to different directory --- src/app/app.module.ts | 2 +- .../scriptaccount-action-editor.component.html | 0 .../scriptaccount-action-editor.component.scss | 0 .../scriptaccount-action-editor.component.spec.ts | 0 .../scriptaccount-action-editor.component.ts | 10 +++++----- 5 files changed, 6 insertions(+), 6 deletions(-) rename src/app/editor/gamesystem-editor/{transition-editor => }/scriptaccount-action-editor/scriptaccount-action-editor.component.html (100%) rename src/app/editor/gamesystem-editor/{transition-editor => }/scriptaccount-action-editor/scriptaccount-action-editor.component.scss (100%) rename src/app/editor/gamesystem-editor/{transition-editor => }/scriptaccount-action-editor/scriptaccount-action-editor.component.spec.ts (100%) rename src/app/editor/gamesystem-editor/{transition-editor => }/scriptaccount-action-editor/scriptaccount-action-editor.component.ts (86%) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 388d61f..219130c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -64,7 +64,7 @@ import {MatTooltip} from "@angular/material/tooltip"; import {MatCard, MatCardContent, MatCardHeader, MatCardTitle} from "@angular/material/card"; import { ScriptaccountActionEditorComponent -} from "./editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component"; +} from "./editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component"; import { ScriptaccountConditionEditorComponent } from "./editor/gamesystem-editor/scriptaccount-condition-editor/scriptaccount-condition-editor.component"; diff --git a/src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.html b/src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.html similarity index 100% rename from src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.html rename to src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.html diff --git a/src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.scss b/src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.scss similarity index 100% rename from src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.scss rename to src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.scss diff --git a/src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.spec.ts b/src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.spec.ts similarity index 100% rename from src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.spec.ts rename to src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.spec.ts diff --git a/src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts b/src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts similarity index 86% rename from src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts rename to src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts index 67ae272..2801dc2 100644 --- a/src/app/editor/gamesystem-editor/transition-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts +++ b/src/app/editor/gamesystem-editor/scriptaccount-action-editor/scriptaccount-action-editor.component.ts @@ -1,12 +1,12 @@ import {Component, Input, OnInit} from '@angular/core'; import {MatTableDataSource} from "@angular/material/table"; -import {ScriptAccount} from "../../../../project/game-model/scriptAccounts/ScriptAccount"; -import {Transition} from "../../../../project/game-model/gamesystems/transitions/Transition"; -import {ScriptAccountAction} from "../../../../project/game-model/gamesystems/actions/ScriptAccountAction"; -import {TemplateElement} from "../../../../project/game-model/templates/TemplateElement"; +import {ScriptAccount} from "../../../project/game-model/scriptAccounts/ScriptAccount"; +import {Transition} from "../../../project/game-model/gamesystems/transitions/Transition"; +import {ScriptAccountAction} from "../../../project/game-model/gamesystems/actions/ScriptAccountAction"; +import {TemplateElement} from "../../../project/game-model/templates/TemplateElement"; import { SimpleTemplateTransition -} from "../../../../project/game-model/templates/simpleGamesystem/SimpleTemplateTransition"; +} from "../../../project/game-model/templates/simpleGamesystem/SimpleTemplateTransition"; @Component({ selector: 'app-scriptaccount-action-editor',