Pixel-Composer/scripts/textInput/textInput.gml
2023-06-20 19:43:19 +02:00

9 lines
228 B
Plaintext

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