Add files via upload

This commit is contained in:
Daniel
2023-11-27 01:06:16 +02:00
committed by GitHub
parent e4161d82c7
commit 1c39199cc3
10 changed files with 1093 additions and 0 deletions

16
Block.pde Normal file
View File

@@ -0,0 +1,16 @@
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;
}
}