1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[client] Create Chunk class

This commit is contained in:
Starbeamrainbowlabs 2017-03-28 19:50:03 +01:00
parent 7f0574a67c
commit 507211cd0e

View file

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