diff --git a/src/js/objects.js b/src/js/objects.js index f7d0ae4..3624fdd 100644 --- a/src/js/objects.js +++ b/src/js/objects.js @@ -1,10 +1,8 @@ export class uLayer { - #name; #objects; constructor(name, objects) { // TODO: check types - this.#name = name; this.#objects = Array(); objects.forEach((object) => { @@ -16,10 +14,6 @@ export class uLayer { this.#objects.push(object); } - getName() { - return this.#name; - } - objects() { return this.#objects; }