mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-07-10 10:23:05 +00:00
14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
// @ts-check
|
|
|
|
class Layer {
|
|
/**
|
|
* @param {string[][]} pixels
|
|
* @param {string} [tag]
|
|
*/
|
|
constructor(pixels, tag = "default") {
|
|
this.pixels = pixels;
|
|
this.tag = tag;
|
|
}
|
|
}
|
|
|
|
export default Layer; |