This commit is contained in:
Bram Verhulst
2024-07-04 14:42:38 +02:00
commit 67af73c6b5
60 changed files with 13407 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
abstract class AbstractLevelCondition {
constructor() {}
abstract checkCondition(): boolean;
}
export default AbstractLevelCondition;
//Interface could be better