Files
archived-Pocket-Bird/src/animation/layer.js
Idrees Hassan 9f7d864e57 Add tag enum
2026-01-18 18:14:40 -05:00

17 lines
253 B
JavaScript

export const TAG = {
DEFAULT: "default",
TUFT: "tuft",
};
class Layer {
/**
* @param {string[][]} pixels
* @param {string} [tag]
*/
constructor(pixels, tag = TAG.DEFAULT) {
this.pixels = pixels;
this.tag = tag;
}
}
export default Layer;