Pixel-Composer/scripts/winwin_extras/winwin_extras.gml

16 lines
376 B
Plaintext
Raw Normal View History

function winwin(_ptr) constructor {
__ptr__ = _ptr;
}
2024-09-12 05:08:48 +02:00
function winwin_config_ext(caption = "", kind = winwin_kind_normal, topmost = false, resize = false, owner = winwin_main) {
var cnf = new winwin_config();
cnf.caption = caption;
cnf.kind = kind;
cnf.topmost = topmost;
cnf.resize = resize;
cnf.owner = owner;
cnf.per_pixel_alpha = true;
return cnf;
2024-09-12 12:42:35 +02:00
}