Skip to content

Commit

Permalink
Fixed types
Browse files Browse the repository at this point in the history
  • Loading branch information
neki-dev committed Oct 13, 2022
1 parent f277d25 commit c4505c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scenes/world/level/__tests__/tile-matrix.test.ts
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/scenes/world/level/tile-matrix.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Phaser from 'phaser';

import { TileType } from '~type/level';
import { TileType } from '~type/world/level';

export class TileMatrix {
/**
Expand Down

0 comments on commit c4505c8

Please sign in to comment.