Start working on list GUI

This commit is contained in:
Vortrex
2022-01-09 05:22:49 -06:00
parent 9ac9a7a2b6
commit a526497f48

View File

@@ -74,3 +74,34 @@ function initListGUI() {
} }
// =========================================================================== // ===========================================================================
function showListGUI() {
closeAllWindows();
logToConsole(LOG_DEBUG, `[VRR.GUI] Showing login window`);
setChatWindowEnabled(false);
mexui.setInput(true);
listDialog.window.shown = true;
guiSubmitKey = checkListDialogSelection;
guiUpKey = selectPreviousListItem;
guiDownKey = selectNextListItem;
}
// ===========================================================================
function checkListDialogSelection() {
}
// ===========================================================================
function selectPreviousListItem() {
}
// ===========================================================================
function selectNextListItem() {
}
// ===========================================================================