Working on right click gem extraction

This commit is contained in:
Hash Borgir
2024-04-28 12:09:32 -06:00
parent d7fab9d077
commit 74f1d9de01
59 changed files with 418 additions and 187 deletions

View File

@@ -28,6 +28,9 @@ extern int randStatBool;
extern bool m_stats_enabled;
extern bool m_help_enabled;
namespace diablo2 {
namespace structures {
struct unit;

View File

@@ -17,6 +17,7 @@ namespace d2_tweaks {
class loot_filter_settings_toggle_menu final : public ui::menu, singleton<loot_filter_settings_toggle_menu> {
ui::controls::button* m_toggle_filter_settings_btn;
ui::controls::button* m_btn_toggle_stats;
ui::controls::button* m_btn_toggle_help;
menu* m_filter_settings_menu;
bool m_show;
public:
@@ -24,6 +25,7 @@ namespace d2_tweaks {
void toggle_filter_settings_click();
void toggle_stats_settings_click();
void toggle_help_click();
void draw() override;