mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
14 lines
167 B
JavaScript
14 lines
167 B
JavaScript
"use strict";
|
|
|
|
class Chunk
|
|
{
|
|
constructor(inSize, inLocation)
|
|
{
|
|
this.Size = inSize;
|
|
this.Location = inLocation;
|
|
|
|
this.lines = [];
|
|
}
|
|
}
|
|
|
|
export default Chunk;
|