1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-09 02:54:01 +00:00
tobspr_shapez.io/src/js/game/item_registry.js
2020-08-12 21:05:32 +02:00

11 lines
366 B
JavaScript

import { gItemRegistry } from "../core/global_registries";
import { ShapeItem } from "./items/shape_item";
import { ColorItem } from "./items/color_item";
import { BooleanItem } from "./items/boolean_item";
export function initItemRegistry() {
gItemRegistry.register(ShapeItem);
gItemRegistry.register(ColorItem);
gItemRegistry.register(BooleanItem);
}