issue-5-gamesystems #6

Merged
sebastian merged 24 commits from issue-5-gamesystems into main 2024-02-10 13:30:37 +01:00
Showing only changes of commit 81cda122a4 - Show all commits

View File

@ -25,7 +25,10 @@ export class GameModel {
}
addGamesystem(gamesystem: Gamesystem<any, any>) {
this._gamesystems.push(gamesystem);
if(this.findGamesystem(gamesystem.componentName) == undefined) {
this._gamesystems.push(gamesystem);
}
}
removeGamesystem(gamesystem : Gamesystem<any, any>) {