1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-13 18:21:51 +00:00
tobspr_shapez.io/mod_examples/base.js

15 lines
269 B
JavaScript
Raw Normal View History

2022-01-16 16:05:13 +00:00
const METADATA = {
website: "https://tobspr.io",
author: "tobspr",
name: "Mod Example: Base",
version: "1",
id: "base",
description: "The most basic mod",
};
class Mod extends shapez.Mod {
init() {
// Start the modding here
}
}