mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-11 09:11:50 +00:00
Also fix a few issues in Electron code. This is not as polished yet, UI from old mod support was reused for now and is likely broken. Mods can be loaded, but there isn't much QoL around the support for now.
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
|
|
}
|
|
}
|