1
0
Fork 0

[client] Create Chunk class

This commit is contained in:
Starbeamrainbowlabs 2017-03-28 19:50:03 +01:00
parent 7f0574a67c
commit 507211cd0e
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
"use strict";
class Chunk
{
constructor(inSize, inLocation)
{
this.Size = inSize;
this.Location = inLocation;
this.lines = [];
}
}
export default Chunk;