1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Initial commit

This commit is contained in:
Tobias Springer
2020-05-09 16:45:23 +02:00
commit 93c6ea683d
304 changed files with 56031 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { BaseSavegameInterface } from "../savegame_interface.js";
const schema = require("./1000.json");
export class SavegameInterface_V1000 extends BaseSavegameInterface {
getVersion() {
return 1000;
}
getSchemaUncached() {
return schema;
}
}

View File

@@ -0,0 +1,5 @@
{
"type": "object",
"required": [],
"additionalProperties": true
}