Mon 21 Jul 22:43:21 CEST 2025

This commit is contained in:
sbosse 2025-07-21 23:05:31 +02:00
parent 160f495a03
commit c2b6d6d691

View File

@ -0,0 +1,9 @@
function Pixmap(depth, width, height, buffer)
{
this.depth = depth;
this.width = width;
this.height = height;
this.data = buffer;
}
module.exports.Pixmap = Pixmap;