mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
15 lines
No EOL
381 B
Text
15 lines
No EOL
381 B
Text
|
|
// This is only the parts that are needed to make the menu fully work right now. More to come later.
|
|
class TextEnterMenu : Menu native
|
|
{
|
|
native bool mInputGridOkay;
|
|
|
|
native static TextEnterMenu Open(Menu parent, String text, int maxlen, int sizemode, bool fromcontroller);
|
|
native String GetText();
|
|
|
|
|
|
override bool TranslateKeyboardEvents()
|
|
{
|
|
return mInputGridOkay;
|
|
}
|
|
} |