1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00
tobspr_shapez.io/src/js/game/game_speed_registry.js
2020-05-14 21:54:11 +02:00

9 lines
258 B
JavaScript

import { RegularGameSpeed } from "./time/regular_game_speed";
import { gGameSpeedRegistry } from "../core/global_registries";
export function initGameSpeedRegistry() {
gGameSpeedRegistry.register(RegularGameSpeed);
// Others are disabled for now
}