diff --git a/src/scenes/world/level/__tests__/tile-matrix.test.ts b/src/scenes/world/level/__tests__/tile-matrix.test.ts index 941bcc4e..73b75f05 100644 --- a/src/scenes/world/level/__tests__/tile-matrix.test.ts +++ b/src/scenes/world/level/__tests__/tile-matrix.test.ts @@ -1,7 +1,7 @@ import assert from 'assert'; import { TileMatrix } from '../tile-matrix'; -import { TileType } from '~type/level'; +import { TileType } from '~type/world/level'; let matrix: TileMatrix; diff --git a/src/scenes/world/level/tile-matrix.ts b/src/scenes/world/level/tile-matrix.ts index 7e374d01..a48a28e6 100644 --- a/src/scenes/world/level/tile-matrix.ts +++ b/src/scenes/world/level/tile-matrix.ts @@ -1,6 +1,6 @@ import Phaser from 'phaser'; -import { TileType } from '~type/level'; +import { TileType } from '~type/world/level'; export class TileMatrix { /**