GolemHelper/GolemHelper/Automation/AutomationLogic.h
Azrub a334cadd83 Release v1.6.0.0
New Features:

- Added "Remove and Respawn" button
- Added "Respawn" and "Remove and Respawn" buttons to Templates tab for quick access
- Added "Always Load Last Settings" option - automatically saves and restores your last used settings on startup

UI Improvements:

- Improved button spacing and layout consistency
2025-10-29 21:10:18 +01:00

12 lines
No EOL
320 B
C++

#pragma once
class AutomationLogic {
public:
static bool ShouldSkipBoonStep(int stepIndex);
static bool ShouldSkipGolemStep(int stepIndex);
static void ApplyBoons();
static void ApplyHealerBoons();
static void SpawnGolem();
static void RespawnGolem();
static void RemoveAndRespawnGolem();
};