10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
abstract class AbstractLevelCondition {
|
|
constructor() {}
|
|
|
|
abstract checkCondition(): boolean;
|
|
}
|
|
|
|
export default AbstractLevelCondition;
|
|
|
|
//Interface could be better
|