Files
perlinsim/Block.pde
2023-11-27 01:06:16 +02:00

17 lines
350 B
Plaintext

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;
}
}