mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
15 lines
381 B
Text
15 lines
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;
|
||
|
}
|
||
|
}
|