Added a list of players when in multiplayer (tab list)

This commit is contained in:
Michal Schiller
2026-03-16 13:34:42 +01:00
parent d3cf64cfdc
commit 997c3f2ebe
4 changed files with 86 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ int transformKey(int glfwkey) {
switch (glfwkey) {
case GLFW_KEY_ESCAPE: return Keyboard::KEY_ESCAPE;
case GLFW_KEY_TAB: return Keyboard::KEY_TAB;
case GLFW_KEY_BACKSPACE: return Keyboard::KEY_BACKSPACE;
case GLFW_KEY_LEFT_SHIFT: return Keyboard::KEY_LSHIFT;
case GLFW_KEY_ENTER: return Keyboard::KEY_RETURN;