ConceptCreator/src/app/project/game-model/ModelComponent.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

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;
}
}