12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
class Collectable {
|
|
constructor(x, y) {
|
|
this.size = 0.1;
|
|
this.x = x;
|
|
this.y = y;
|
|
this.collected = false;
|
|
}
|
|
}
|
|
|
|
Collectable.texture = new Image();
|
|
Collectable.texture.src = "img/collectable.png";
|