Add Formatting (Thank God)

This commit is contained in:
2024-08-29 15:47:58 +02:00
parent 545e47a9f3
commit 1ab45204b9
35 changed files with 2331 additions and 254 deletions

View File

@@ -1,7 +1,10 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
class NextLevel {
currentState = 0;
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
states: Array<Function> = [];
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
constructor(states: Array<Function>) {
this.states = states;
}