diff --git a/island/grid.ts b/island/grid.ts index 07dbb48..89cc15e 100644 --- a/island/grid.ts +++ b/island/grid.ts @@ -32,15 +32,6 @@ export class IslandGrid { ); } - public get(x: number, y: number): number { - return this.data[this.xy(x, y)]; - } - - public set(x: number, y: number, tile: number) { - this.data[this.xy(x, y)] = tile; - console.log(x, y, this.xy(x, y), this.data[this.xy(x, y)]); - } - public floodSearch( startPos: number, shouldExpand: (tile: number) => boolean