1
0
Fork 0

[client] Fix crash by fiddling with imports

This commit is contained in:
Starbeamrainbowlabs 2017-05-04 21:38:30 +01:00
parent e7b6293278
commit 8d38086eaf
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,8 @@
"use strict";
import ChunkReference from './ChunkReference.js';
import Rectangle from './Utilities/Rectangle.js';
import ChunkReference from './ChunkReference';
import Chunk from './Chunk';
import Rectangle from './Utilities/Rectangle';
class ChunkCache
{
@ -70,7 +71,8 @@ class ChunkCache
{
for (let chunk of message.Chunks) {
//let newChunkRef = new ChunkReference();
let newChunk = new Chunk(chunk.Location)
let newChunk = new Chunk(chunk.Location);
}
}
}