Pixel-Composer/scripts/textInput/textInput.gml
2023-03-08 20:59:54 +07:00

7 lines
No EOL
193 B
Text

function textInput(_input, _onModify, _extras = noone) : widget() constructor {
input = _input;
onModify = _onModify;
extras = _extras;
static _resetFocus = function() { resetFocus(); }
}