ConceptCreator/src/app/game-model/gamesystems/SimpleState.ts
Sebastian Böckelmann aada044e08
Some checks failed
E2E Testing / test (push) Failing after 1m25s
Implement ProductStateCreation
2024-02-10 17:07:24 +01:00

25 lines
600 B
TypeScript

import {State} from "./State";
import {SimpleTransition} from "./SimpleTransition";
import {Transition} from "./Transition";
export class SimpleState extends State<SimpleTransition> {
stateLabel: string = "";
stateDescription: string = "";
constructor(stateLabel: string, stateDescription: string) {
super();
this.stateLabel = stateLabel;
this.stateDescription = stateDescription;
}
equals(state: State<Transition<any>>): boolean {
if(!(state instanceof SimpleState)) {
return false;
}
return this.stateLabel === (state as SimpleState).stateLabel;
}
}