Skip to content

Commit

Permalink
rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
canalun committed Feb 25, 2024
1 parent 96f9fa8 commit a6bccba
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/game/gameOver.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getBallCenterPosition, type Ball } from "./ball"
import type { Block } from "./blocks"
import type { Scoreboard } from "./initializeScoreboard"
import type { Scoreboard } from "./scoreboard"
import { ballSetting, veilZIndex } from "./settings"

export function startCheckIsGameOver(
Expand Down
2 changes: 1 addition & 1 deletion src/game/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { initializeBall } from "./ball"
import { initializeBar } from "./bar"
import { getBlocks } from "./blocks"
import { freezePage } from "./freezePage"
import { initializeScoreboard } from "./initializeScoreboard"
import { msg } from "./message"
import { initializeScoreboard } from "./scoreboard"
import { standby } from "./standby"

export function main(options: { withScoreboard: boolean }) {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/game/standby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Ball } from "./ball"
import type { Bar } from "./bar"
import type { Block } from "./blocks"
import { startCheckIsGameOver } from "./gameOver"
import type { Scoreboard } from "./initializeScoreboard"
import type { Scoreboard } from "./scoreboard"
import { ballSetting, barSetting, initialBottom } from "./settings"
import { setSoundEffect } from "./soundEffect"
import { startBallAnimation } from "./updateBall"
Expand Down
2 changes: 1 addition & 1 deletion src/game/updateBlocks.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getRectOfBlock, type Block } from "./blocks"
import { getComputedStyleWithCache } from "./getComputedStyleWithCache"
import type { Scoreboard } from "./initializeScoreboard"
import type { Scoreboard } from "./scoreboard"
import {
assert,
isFrameElement,
Expand Down

0 comments on commit a6bccba

Please sign in to comment.