ConceptCreator/src/app/game-model/gamesystems/SimpleState.ts
Sebastian Böckelmann d5f593a824
All checks were successful
E2E Testing / test (push) Successful in 1m24s
Datastructure for Gamesystems and Create and Remove SimpleStates and Transitions
2024-02-05 20:44:39 +01:00

7 lines
147 B
TypeScript

import {State} from "./State";
import {SimpleTransition} from "./SimpleTransition";
export class SimpleState extends State<SimpleTransition> {
}