diff --git a/Block.pde b/Block.pde deleted file mode 100644 index 986007f..0000000 --- a/Block.pde +++ /dev/null @@ -1,16 +0,0 @@ -class Block { - int x; - int y; - float h; - boolean isTree; - boolean isFlower; - int treeSize; - color treeColor; - Block(int x, int y, float h, color treeColor, int treeSize) { - this.x = x; - this.y = y; - this.h = h; - this.treeColor = treeColor; - this.treeSize = treeSize; - } -}