mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
|
import { BaseSavegameInterface } from "../savegame_interface.js";
|
||
|
|
||
|
const schema = require("./1000.json");
|
||
|
|
||
|
export class SavegameInterface_V1000 extends BaseSavegameInterface {
|
||
|
getVersion() {
|
||
|
return 1000;
|
||
|
}
|
||
|
|
||
|
getSchemaUncached() {
|
||
|
return schema;
|
||
|
}
|
||
|
}
|