Skip to content

Commit

Permalink
fix: missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceat committed Jan 20, 2025
1 parent 9f8705c commit 37c0c51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/processing/BlocksProcessing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ import {
ProcessingTask,
ChunkContainer,
DensityVolume,
} from '../index'
} from '../index.js'
import {
serializePatchId,
getPatchId,
asVect3,
asVect2,
parseThreeStub,
} from '../utils/convert'
import { PatchKey, GroundBlock, Block, BlockData } from '../utils/types'
} from '../utils/convert.js'
import { PatchKey, GroundBlock, Block, BlockData } from '../utils/types.js'

import { GroundBlockData, GroundPatch } from './GroundPatch'
import { ItemsBaker } from './ItemsProcessing'
import { GroundBlockData, GroundPatch } from './GroundPatch.js'
import { ItemsBaker } from './ItemsProcessing.js'

export type BlocksBatchArgs = {
posBatch: Vector2[]
Expand Down

0 comments on commit 37c0c51

Please sign in to comment.