ConceptCreator/src/app/project/game-model/interactions/condition/GamesystemCondition.ts
Sebastian Böckelmann bcd06d894f
All checks were successful
E2E Testing / test (push) Successful in 1m32s
Implement Interactionstructure
2024-05-11 17:11:13 +02:00

14 lines
398 B
TypeScript

import {Gamesystem} from "../../gamesystems/Gamesystem";
import {State} from "../../gamesystems/states/State";
export class GamesystemCondition {
targetGamesystem: Gamesystem<any, any>
requieredState: State<any>;
constructor(targetGamesystem: Gamesystem<any, any>, requieredState: State<any>) {
this.targetGamesystem = targetGamesystem;
this.requieredState = requieredState;
}
}