mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-09 11:04:03 +00:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
|
import { BaseGameSpeed } from "./base_game_speed";
|
||
|
|
||
|
export class RegularGameSpeed extends BaseGameSpeed {
|
||
|
static getId() {
|
||
|
return "regular";
|
||
|
}
|
||
|
|
||
|
getTimeMultiplier() {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|