Skip to content

Commit

Permalink
importを整理
Browse files Browse the repository at this point in the history
  • Loading branch information
3w36zj6 committed Nov 9, 2023
1 parent 34f1f23 commit d2ed58f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/class/MusicTileManager.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type Music, Beatmap } from "./Music"
import { type Music } from "./Music"
import { MusicTile } from "./MusicTile"

export class MusicTileManager {
Expand Down
10 changes: 4 additions & 6 deletions src/scene/PlayScene.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import bms from "bms"
import axios, { type AxiosResponse, type AxiosError } from "axios"
import WebFont from "webfontloader"
import axios, { type AxiosError, type AxiosResponse } from "axios"

import { Chart } from "../class/Chart"
import { ChartPlayer } from "../class/ChartPlayer"
import { KeySoundPlayer } from "../class/KeySoundPlayer"
import { DebugGUI } from "../class/DebugGUI"
import { PlayResult } from "../class/PlayResult"
import { type PlayConfig } from "../class/PlayConfig"
import { KeySoundPlayer } from "../class/KeySoundPlayer"
import { type Beatmap, type Music } from "../class/Music"
import { type PlayConfig } from "../class/PlayConfig"
import { PlayResult } from "../class/PlayResult"
export class PlayScene extends Phaser.Scene {
private debugGUI: DebugGUI
private beatmap: Beatmap
Expand Down

0 comments on commit d2ed58f

Please sign in to comment.