mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 22:46:19 +01:00
16 lines
No EOL
376 B
Text
16 lines
No EOL
376 B
Text
function winwin(_ptr) constructor {
|
|
__ptr__ = _ptr;
|
|
}
|
|
|
|
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;
|
|
} |