mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
9 lines
258 B
JavaScript
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
|
|
}
|