diff --git a/apps/client/src/scenes/game/application/network/handlers/PlayerSyncHandler.ts b/apps/client/src/scenes/game/application/network/handlers/PlayerSyncHandler.ts index 084fe8d..540d27f 100644 --- a/apps/client/src/scenes/game/application/network/handlers/PlayerSyncHandler.ts +++ b/apps/client/src/scenes/game/application/network/handlers/PlayerSyncHandler.ts @@ -14,8 +14,8 @@ LocalPlayerController, RemotePlayerController, } from "@client/scenes/game/entities/player/PlayerController"; +import { PlayerRepository } from "@client/scenes/game/entities/player/PlayerRepository"; import { AppearanceResolver } from "@client/scenes/game/application/AppearanceResolver"; -import { PlayerRepository } from "@client/scenes/game/application/player/PlayerRepository"; /** PlayerSyncHandler の初期化入力 */ export type PlayerSyncHandlerOptions = { diff --git a/apps/client/src/scenes/game/application/player/PlayerRepository.ts b/apps/client/src/scenes/game/application/player/PlayerRepository.ts deleted file mode 100644 index 19466a2..0000000 --- a/apps/client/src/scenes/game/application/player/PlayerRepository.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * PlayerRepository - * entities層のPlayerRepositoryを段階移行のため再公開する - * 既存import互換を維持して移行コストを抑える - */ - -/** entities層のPlayerRepositoryを互換再エクスポートする */ -export { PlayerRepository } from "@client/scenes/game/entities/player/PlayerRepository"; \ No newline at end of file diff --git a/apps/client/src/scenes/game/input/bomb/BombButton.tsx b/apps/client/src/scenes/game/input/bomb/BombButton.tsx deleted file mode 100644 index 9ba5abe..0000000 --- a/apps/client/src/scenes/game/input/bomb/BombButton.tsx +++ /dev/null @@ -1,11 +0,0 @@ -/** - * BombButton - * presentation配下のBombButtonを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** presentation配下の型を互換再エクスポートする */ -export type { BombButtonProps } from "./presentation/BombButton"; - -/** presentation配下のコンポーネントを互換再エクスポートする */ -export { BombButton } from "./presentation/BombButton"; diff --git a/apps/client/src/scenes/game/input/joystick/JoystickInputPresenter.tsx b/apps/client/src/scenes/game/input/joystick/JoystickInputPresenter.tsx deleted file mode 100644 index 107992e..0000000 --- a/apps/client/src/scenes/game/input/joystick/JoystickInputPresenter.tsx +++ /dev/null @@ -1,8 +0,0 @@ -/** - * JoystickInputPresenter - * presentation配下のJoystickInputPresenterを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** presentation配下のコンポーネントを互換再エクスポートする */ -export { JoystickInputPresenter } from "./presentation/JoystickInputPresenter"; diff --git a/apps/client/src/scenes/game/input/joystick/JoystickModel.ts b/apps/client/src/scenes/game/input/joystick/JoystickModel.ts deleted file mode 100644 index 023930e..0000000 --- a/apps/client/src/scenes/game/input/joystick/JoystickModel.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** - * JoystickModel - * model配下のJoystickModelを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** model配下の型を互換再エクスポートする */ -export type { JoystickComputed } from "./model/JoystickModel"; - -/** model配下の関数を互換再エクスポートする */ -export { computeJoystick } from "./model/JoystickModel"; diff --git a/apps/client/src/scenes/game/input/joystick/JoystickView.tsx b/apps/client/src/scenes/game/input/joystick/JoystickView.tsx deleted file mode 100644 index 5ea8c7b..0000000 --- a/apps/client/src/scenes/game/input/joystick/JoystickView.tsx +++ /dev/null @@ -1,8 +0,0 @@ -/** - * JoystickView - * presentation配下のJoystickViewを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** presentation配下のコンポーネントを互換再エクスポートする */ -export { JoystickView } from "./presentation/JoystickView"; diff --git a/apps/client/src/scenes/game/input/joystick/useJoystickController.ts b/apps/client/src/scenes/game/input/joystick/useJoystickController.ts deleted file mode 100644 index de5d854..0000000 --- a/apps/client/src/scenes/game/input/joystick/useJoystickController.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * useJoystickController - * hooks配下のuseJoystickControllerを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** hooks配下のフックを互換再エクスポートする */ -export { useJoystickController } from "./hooks/useJoystickController"; diff --git a/apps/client/src/scenes/game/input/joystick/useJoystickState.ts b/apps/client/src/scenes/game/input/joystick/useJoystickState.ts deleted file mode 100644 index 284ee43..0000000 --- a/apps/client/src/scenes/game/input/joystick/useJoystickState.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * useJoystickState - * hooks配下のuseJoystickStateを段階移行のため再公開する - * 既存import互換を維持して段階的な参照置換を可能にする - */ - -/** hooks配下のフックを互換再エクスポートする */ -export { useJoystickState } from "./hooks/useJoystickState";