Pixel-Composer/scripts/textInput/textInput.gml
2023-10-03 12:14:28 +07:00

10 lines
237 B
Plaintext

function textInput(_input, _onModify) : widget() constructor {
input = _input;
onModify = _onModify;
side_button = noone;
selecting = false;
static _resetFocus = function() { resetFocus(); }
static onKey = function(key) {}
}