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

9 lines
258 B
JavaScript
Raw Normal View History

2020-05-14 19:54:11 +00:00
import { RegularGameSpeed } from "./time/regular_game_speed";
import { gGameSpeedRegistry } from "../core/global_registries";
export function initGameSpeedRegistry() {
gGameSpeedRegistry.register(RegularGameSpeed);
// Others are disabled for now
}