Files
EGameTools/DL2GameOverhaulScript/source/menu/misc.h
EricPlayZ 695fe35e64 - Switched to "spdlog" for printing and logging
- Added logging
- Fixed menu scaling issues with the new menu layout
2024-02-18 02:33:13 +02:00

18 lines
308 B
C++

#pragma once
#include "menu.h"
namespace Menu {
namespace Misc {
extern KeyBindOption disableGamePauseWhileAFK;
extern KeyBindOption disableHUD;
class Tab : MenuTab {
public:
Tab() : MenuTab("Misc", 2) {}
void Update() override;
void Render() override;
static Tab instance;
};
}
}