mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-05-05 03:07:14 -04:00
wip
This commit is contained in:
parent
4c66cc820c
commit
cee5c6bc60
28 changed files with 948 additions and 344 deletions
|
@ -1,13 +1,17 @@
|
|||
import {GameState} from "./types";
|
||||
import {asyncAlert} from "./asyncAlert";
|
||||
import {t} from "./i18n/i18n";
|
||||
import {levelsListHTMl, max_levels, pickedUpgradesHTMl} from "./game_utils";
|
||||
import {getCreativeModeWarning, getHistory} from "./gameOver";
|
||||
import {pause} from "./game";
|
||||
import {allLevels, icons} from "./loadGameData";
|
||||
import {firstWhere} from "./pure_functions";
|
||||
import {getSettingValue, getTotalScore} from "./settings";
|
||||
import {getLevelUnlockCondition, reasonLevelIsLocked, upgradeName,} from "./get_level_unlock_condition";
|
||||
import { GameState } from "./types";
|
||||
import { asyncAlert } from "./asyncAlert";
|
||||
import { t } from "./i18n/i18n";
|
||||
import { levelsListHTMl, max_levels, pickedUpgradesHTMl } from "./game_utils";
|
||||
import { getCreativeModeWarning, getHistory } from "./gameOver";
|
||||
import { pause } from "./game";
|
||||
import { allLevels, icons } from "./loadGameData";
|
||||
import { firstWhere } from "./pure_functions";
|
||||
import { getSettingValue, getTotalScore } from "./settings";
|
||||
import {
|
||||
getLevelUnlockCondition,
|
||||
reasonLevelIsLocked,
|
||||
upgradeName,
|
||||
} from "./get_level_unlock_condition";
|
||||
|
||||
export async function openScorePanel(gameState: GameState) {
|
||||
pause(true);
|
||||
|
@ -96,4 +100,3 @@ export function getNearestUnlockHTML(gameState: GameState) {
|
|||
|
||||
`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue