remove unused code
This commit is contained in:
parent
6384048fb5
commit
92a0af5457
1 changed files with 0 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue