mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-24 19:59:36 +00:00
12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
class Layer {
|
|
/**
|
|
* @param {string[][]} pixels
|
|
* @param {string} [tag]
|
|
*/
|
|
constructor(pixels, tag = "default") {
|
|
this.pixels = pixels;
|
|
this.tag = tag;
|
|
}
|
|
}
|
|
|
|
export default Layer; |