mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-13 02:01:51 +00:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
|
|
import { Mod } from "./mod";
|
||
|
|
|
||
|
|
export class DisabledMod extends Mod {
|
||
|
|
init(): void | Promise<void> {
|
||
|
|
// Do nothing
|
||
|
|
}
|
||
|
|
}
|