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