GolemHelper/GolemHelper/Automation/AutomationLogic.h
Azrub 4adbe16698 Refactor: Split dllmain.cpp into organized modules
- Split 1000+ line dllmain.cpp into clean, modular structure
- Organized code into Common/, Utils/, Config/, Automation/, UI/, Input/ modules
- Removed precompiled headers to simplify build configuration
- Improved maintainability and code organization
- No functional changes, identical addon behavior
2025-07-17 13:28:31 +02:00

10 lines
No EOL
258 B
C++

#pragma once
class AutomationLogic {
public:
static bool ShouldSkipBoonStep(int stepIndex);
static bool ShouldSkipGolemStep(int stepIndex);
static void ApplyAllBoons();
static void ApplyHealerBoons();
static void ApplyGolemSettings();
};