ConceptCreator/src/app/project/game-model/SaveComponent.ts
Sebastian Böckelmann 8016f55e85
Some checks failed
E2E Testing / test (push) Failing after 1m34s
Refactor Loading of ScriptAccounts
2024-03-20 09:26:14 +01:00

14 lines
199 B
TypeScript

export abstract class SaveComponent {
unsaved: boolean = false;
static JSON_INDENT = 4;
onModifyContent() {
this.unsaved = true;
}
onSaveContent() {
this.unsaved = false;
}
}