Pixel-Composer/scripts/note_data/note_data.gml

20 lines
278 B
Plaintext
Raw Normal View History

2023-10-15 15:04:42 +02:00
function Note() constructor {
content = [];
w = 256;
h = 256;
static draw = function() {
}
static serialize = function() {
var _dat = {};
_dat.content = [];
return _dat;
}
static deserialize = function(_dat) {
content = _dat.content;
return self;
}
}