aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs_input.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-02-13 23:20:23 -0500
committerPaul Gilbert2015-02-13 23:20:23 -0500
commitd225bc4cb3364b2cc8fc0fcab96347cc91e93866 (patch)
tree5b58a09909a93070fb7cee8a5a8b875eab40d4f9 /engines/xeen/dialogs_input.h
parente16ecd110b2f607621773e13df8f972c9c7e979a (diff)
downloadscummvm-rg350-d225bc4cb3364b2cc8fc0fcab96347cc91e93866.tar.gz
scummvm-rg350-d225bc4cb3364b2cc8fc0fcab96347cc91e93866.tar.bz2
scummvm-rg350-d225bc4cb3364b2cc8fc0fcab96347cc91e93866.zip
XEEN: Implemented saveCharacter
Diffstat (limited to 'engines/xeen/dialogs_input.h')
-rw-r--r--engines/xeen/dialogs_input.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/xeen/dialogs_input.h b/engines/xeen/dialogs_input.h
index c6d832ce6b..30e4cb2854 100644
--- a/engines/xeen/dialogs_input.h
+++ b/engines/xeen/dialogs_input.h
@@ -39,6 +39,9 @@ protected:
int getString(Common::String &line, uint maxLen, int maxWidth, bool isNumeric);
Input(XeenEngine *vm, Window *window) : _vm(vm), _window(window) {}
+public:
+ static int show(XeenEngine *vm, Window *window, Common::String &line,
+ uint maxLen, int maxWidth, bool isNumeric = false);
};
class StringInput : public Input {