- 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
10 lines
No EOL
258 B
C++
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();
|
|
}; |