ConceptCreator/src/app/game-model/ModelComponent.ts
Sebastian Böckelmann 4bf897e85b
All checks were successful
E2E Testing / test (push) Successful in 1m24s
Visualize Save/Unsaved Status in Tabs (Editor)
2024-02-05 17:59:20 +01:00

15 lines
477 B
TypeScript

import {ModelComponentType} from "./ModelComponentType";
import {SaveComponent} from "./SaveComponent";
export abstract class ModelComponent extends SaveComponent{
componentName: string
componentDescription: string
type: ModelComponentType
constructor(componentName: string, componentDescription: string, type: ModelComponentType) {
super();
this.componentName = componentName;
this.componentDescription = componentDescription;
this.type = type;
}
}