mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
|
import { gItemRegistry } from "../core/global_registries";
|
||
|
import { ShapeItem } from "./items/shape_item";
|
||
|
|
||
|
export function initItemRegistry() {
|
||
|
gItemRegistry.register(ShapeItem);
|
||
|
}
|